Ergo\Tests\Http\ResponseBuilderTest::testNotFound PHP Method

testNotFound() public method

public testNotFound ( )
    public function testNotFound()
    {
        $builder = new Http\ResponseBuilder();
        $response = $builder->notFound()->build();
        $this->assertEquals($response->getStatus()->getCode(), 404);
        $this->assertFalse($response->hasBody());
    }