Bolt\Tests\Response\TemplateResponseTest::testCreate PHP Method

testCreate() public method

public testCreate ( )
    public function testCreate()
    {
        $response = $this->createTestResponse('error.twig', $this->getContext(), []);
        $this->assertInstanceOf(TemplateResponse::class, $response);
        $this->assertEquals(200, $response->getStatusCode());
        $context = $response->getContext();
        $this->assertEquals('1555', $context['context']['code']);
    }