public void EnsureFoldersExistExitsEarlyIfShouldNotPreloadOrCachingDisabled(bool shouldPreLoad,
                                                                                    bool isFileSystemCacheEnabled)
        {
            GivenTheSettings(1, 1, shouldPreLoad, isFileSystemCacheEnabled);

            _preLoader.EnsureFoldersExists();

            _cache
            .DidNotReceive()
            .EnsureFoldersExist(FundingFileSystemCacheKey.Folder, ProviderFundingFileSystemCacheKey.Folder);
        }