PhpBench\Tests\Unit\LoggerRegistryTest::testUnknownLogger PHP Method

testUnknownLogger() public method

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');
    }