PhlytyTest\AppTest::testCanInjectSpecificLoggerInstance PHP Method

testCanInjectSpecificLoggerInstance() public method

    public function testCanInjectSpecificLoggerInstance()
    {
        $logger = new Logger();
        $this->app->setLog($logger);
        $this->assertSame($logger, $this->app->getLog());
    }
AppTest