AssetManagerTest\Service\PathStackResolverTest::testWillRefuseInvalidPath PHP Method

testWillRefuseInvalidPath() public method

    public function testWillRefuseInvalidPath()
    {
        $resolver = new PathStackResolver();
        $this->setExpectedException(InvalidArgumentException::class);
        $resolver->addPath(null);
    }