PhpBench\Tests\Unit\LoggerRegistryTest::testUnknownLogger PHP Метод

testUnknownLogger() публичный Метод

It should throw an exception when a non-existing logger is requested.
public testUnknownLogger ( )
    public function testUnknownLogger()
    {
        $this->registry->addProgressLogger('foobar', $this->progressLogger->reveal());
        $this->registry->getProgressLogger('barfoo');
    }