AssetManagerTest\Cache\FilePathCacheTest::testCachedFile PHP Method

testCachedFile() public method

public testCachedFile ( )
    public function testCachedFile()
    {
        $method = new \ReflectionMethod(FilePathCache::class, 'cachedFile');
        $method->setAccessible(true);
        $this->assertEquals('/' . ltrim(__FILE__, '/'), $method->invoke(new FilePathCache('', __FILE__)));
    }