Skip to content

Commit

Permalink
update tests to support phpunit downgrade to 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Mulkave committed Mar 27, 2014
1 parent 525300c commit 71be98d
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tests/ClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@
static $serverHost = 'localhost';
static $serverPort = '6767';

public static function setUpBeforeClass()
{
static::bootUpBuiltInServer();
}

public static function tearDownAfterClass()
{
static::turnDownBuiltInServer();
}

public function setUp()
{
Expand Down Expand Up @@ -155,4 +164,4 @@ public static function serverURL()
return static::$serverHost.':'.static::$serverPort;
}

}
}

0 comments on commit 71be98d

Please sign in to comment.