You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
768 B
34 lines
768 B
using System;
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common.Cache;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Common.Test.CacheTests
|
|
{
|
|
[TestFixture]
|
|
public class CachedManagerFixture:TestBase<ICacheManger>
|
|
{
|
|
[Test]
|
|
public void should_return_proper_type_of_cache()
|
|
{
|
|
var result = Subject.GetCache<DateTime>(typeof(string));
|
|
|
|
result.Should().BeOfType<Cached<DateTime>>();
|
|
}
|
|
|
|
|
|
[Test]
|
|
public void multiple_calls_should_get_the_same_cache()
|
|
{
|
|
var result1 = Subject.GetCache<DateTime>(typeof(string));
|
|
var result2 = Subject.GetCache<DateTime>(typeof(string));
|
|
|
|
result1.Should().BeSameAs(result2);
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
} |