Kraken\_Unit\Log\LoggerTest::testApiPopProcessor_CallsMethodOnModel PHP Method

testApiPopProcessor_CallsMethodOnModel() public method

    public function testApiPopProcessor_CallsMethodOnModel()
    {
        $logger = $this->createLoggerMock();
        $callable = function () {
        };
        $this->expect('popProcessor', [])->willReturn($callable);
        $this->assertSame($callable, $logger->popProcessor());
    }