ZendTest\Stratigility\NextTest::testNextImplementsDelegateInterface PHP Method

testNextImplementsDelegateInterface() public method

    public function testNextImplementsDelegateInterface()
    {
        $next = new Next($this->queue, function () {
        });
        $this->assertInstanceOf(DelegateInterface::class, $next);
    }
NextTest