本文整理汇总了C#中CacheItem.Should方法的典型用法代码示例。如果您正苦于以下问题:C# CacheItem.Should方法的具体用法?C# CacheItem.Should怎么用?C# CacheItem.Should使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CacheItem
的用法示例。
在下文中一共展示了CacheItem.Should方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CacheItem_Ctor4_ValidateCreatedResult
public void CacheItem_Ctor4_ValidateCreatedResult()
{
// arrange
string key = "key";
object value = "value";
string region = "region";
ExpirationMode mode = ExpirationMode.Sliding;
TimeSpan timeout = new TimeSpan(0, 23, 45);
// act
var act = new CacheItem<object>(key, region, value, mode, timeout);
// assert
act.Should()
.Match<CacheItem<object>>(p => p.ExpirationMode == mode)
.And.Match<CacheItem<object>>(p => p.ExpirationTimeout == timeout)
.And.Match<CacheItem<object>>(p => p.Key == key)
.And.Match<CacheItem<object>>(p => p.Value == value)
.And.Match<CacheItem<object>>(p => p.Region == region);
}
示例2: CacheItem_Ctor_ExpirationTimeoutDefaults
public void CacheItem_Ctor_ExpirationTimeoutDefaults()
{
// arrange
string key = "key";
object value = "value";
// act
var act = new CacheItem<object>(key, value, ExpirationMode.None, TimeSpan.FromDays(1));
// assert - should reset to TimeSpan.Zero because mode is "None"
act.Should()
.Match<CacheItem<object>>(p => p.ExpirationMode == ExpirationMode.None)
.And.Match<CacheItem<object>>(p => p.ExpirationTimeout == TimeSpan.Zero)
.And.Match<CacheItem<object>>(p => p.Key == key)
.And.Match<CacheItem<object>>(p => p.Value == value);
}
示例3: CacheItem_Ctor2_ValidateCreatedResult
public void CacheItem_Ctor2_ValidateCreatedResult()
{
// arrange
string key = "key";
object value = "value";
string region = "region";
// act
var act = new CacheItem<object>(key, region, value);
// assert
act.Should()
.Match<CacheItem<object>>(p => p.ExpirationMode == ExpirationMode.None)
.And.Match<CacheItem<object>>(p => p.ExpirationTimeout == TimeSpan.Zero)
.And.Match<CacheItem<object>>(p => p.Key == key)
.And.Match<CacheItem<object>>(p => p.Value == value)
.And.Match<CacheItem<object>>(p => p.Region == region);
}