public void TestGetTempCachePath()
    {
        var tempCachePath = EntityScenesPaths.GetTempCachePath();

        // Verify we can make and remove this path
        if (!Directory.Exists(tempCachePath))
        {
            Directory.CreateDirectory(tempCachePath);
        }

        Directory.Delete(tempCachePath);
    }