Skip to content

Commit

Permalink
Try to fix PHPUnit execution on HHVM.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgaillard committed Jul 7, 2016
1 parent 6b781bc commit 7d9ff28
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ module.exports = function(grunt) {
},

options: {
bin : 'vendor/bin/phpunit',
configuration : 'phpunit.xml.dist',
//group : 'CURLClientTest'
}
Expand Down
4 changes: 2 additions & 2 deletions src/test/php/Gomoob/Pushwoosh/Client/CURLClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@
*/
namespace Gomoob\Pushwoosh\Client;

use Gomoob\Pushwoosh\Exception\PushwooshException;
use PHPUnit\Framework\TestCase;

/**
* Test case used to test the <code>Pushwoosh</code> class.
*
* @author Baptiste GAILLARD (baptiste.gaillard@gomoob.com)
* @group CURLClientTest
*/
class CURLClientTest extends \PHPUnit_Framework_TestCase
class CURLClientTest extends TestCase
{
/**
* Test method for the `pushwooshCall($method, arra $data)` function.
Expand Down

0 comments on commit 7d9ff28

Please sign in to comment.