Phprest\Router\StrategyTest::testDispatchWithClassAndMethodAndResponseObject PHP Метод

testDispatchWithClassAndMethodAndResponseObject() публичный Метод

    public function testDispatchWithClassAndMethodAndResponseObject()
    {
        $this->setRequestParameters('phprest-test', 1, '*/*');
        $result = $this->strategy->dispatch('Phprest\\Stub\\Controller\\Simple::getSampleResponse', []);
        $this->assertInstanceOf('Phprest\\HttpFoundation\\Response', $result);
        if ($result instanceof \Phprest\HttpFoundation\Response) {
            $this->assertEquals(json_encode('sample'), $result->getContent());
        }
    }