Kraken\_Module\Filesystem\_Partial\Filesystem\FsApiGetTimestampPartial::testApiGetTimestamp_ThrowsException_WhenNodeDoesNotExist PHP Method

testApiGetTimestamp_ThrowsException_WhenNodeDoesNotExist() public method

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