Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiGetTypePartial::testApiGetType_ThrowsException_WhenNodeDoesNotExist PHP Method

testApiGetType_ThrowsException_WhenNodeDoesNotExist() public method

    public function testApiGetType_ThrowsException_WhenNodeDoesNotExist()
    {
        $test = $this->getTest();
        $fs = $this->createFilesystem();
        $p = $this->getPrefixed('NULL');
        $test->setExpectedException(ReadException::class);
        $fs->getType($p);
    }