PhlytyTest\AppTest::testCanInjectSpecificLoggerInstance PHP 메소드

testCanInjectSpecificLoggerInstance() 공개 메소드

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