ZendTest\Stratigility\NextTest::testNextDoesNotComposeResponsePrototypeByDefault PHP Method

testNextDoesNotComposeResponsePrototypeByDefault() public method

    public function testNextDoesNotComposeResponsePrototypeByDefault()
    {
        $next = new Next($this->queue, function () {
        });
        $this->assertAttributeEmpty('responsePrototype', $next);
    }
NextTest