Bari.Core.Test.Build.Cache.MemoryBuildCacheTest.StoreReplacePreviousItem C# (CSharp) Method

StoreReplacePreviousItem() private method

private StoreReplacePreviousItem ( ) : void
return void
        public void StoreReplacePreviousItem()
        {
            cache.Store(T, fingerprint.Object, new TargetRelativePath[0], root);
            cache.Store(T, otherFingerprint.Object, new TargetRelativePath[0], root);
            cache.Contains(T, fingerprint.Object).Should().BeFalse();
            cache.Contains(T, otherFingerprint.Object).Should().BeTrue();
        }