Remove output buffering functions from setup() and tearDown()

This commit is contained in:
PJ Dietz 2014-07-14 00:18:54 -04:00
parent 0d1adaa767
commit efd1843603
1 changed files with 0 additions and 11 deletions

View File

@ -6,17 +6,6 @@ use pjdietz\WellRESTed\Test;
class ResponseBuilderTest extends \PHPUnit_Framework_TestCase class ResponseBuilderTest extends \PHPUnit_Framework_TestCase
{ {
public function setUp()
{
ob_start();
}
public function tearDown()
{
ob_clean();
ob_end_clean();
}
public function testConstructor() public function testConstructor()
{ {
$resp = new Response(200, "This is the body", array("Content-type" => "text/plain")); $resp = new Response(200, "This is the body", array("Content-type" => "text/plain"));