OrnoTest\Route\RouteCollectionTest::testExceptionIsThrownWhenWrongStrategyTypeProvided PHP Метод

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

Asserts that an exception is thrown when an incorrect strategy type is provided
    public function testExceptionIsThrownWhenWrongStrategyTypeProvided()
    {
        $this->setExpectedException('InvalidArgumentException');
        $router = new RouteCollection();
        $router->setStrategy('hello');
    }