Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiGetMimetypePartial::testApiGetMimetype_ThrowsException_WhenNodeDoesNotExist PHP Method

testApiGetMimetype_ThrowsException_WhenNodeDoesNotExist() public method

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