Files

24 lines
522 B
C#
Raw Permalink Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
using NUnit.Framework;
using Umbraco.Cms.Core.Cache;
namespace Umbraco.Cms.Tests.UnitTests.Umbraco.Core.Cache;
[TestFixture]
public class DictionaryAppCacheTests : AppCacheTests
{
public override void Setup()
{
base.Setup();
_appCache = new DictionaryAppCache();
}
private DictionaryAppCache _appCache;
internal override IAppCache AppCache => _appCache;
protected override int GetTotalItemCount => _appCache.Count;
}