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

testApiGetType_ReturnsType_WhenNodeIsFile() public method

    public function testApiGetType_ReturnsType_WhenNodeIsFile()
    {
        $test = $this->getTest();
        $fs = $this->createFilesystem();
        $p = $this->getPrefixed('FILE_A');
        $type = 'file';
        $test->assertSame($type, $fs->getType($p));
    }