This commit is contained in:
vis2k 2021-05-13 13:04:51 +08:00
parent c5579e9744
commit d8786b16ff

View File

@ -254,7 +254,6 @@ public void TestRemovePair()
{
new KeyValuePair<int, string>(1, "World"),
new KeyValuePair<int, string>(2, "!"),
}));
}
@ -289,7 +288,6 @@ public void DirtyTest()
Assert.That(serverSyncDictionary.IsDirty, Is.False);
}
[Test]
public void ObjectCanBeReusedAfterReset()
{
@ -311,7 +309,6 @@ public void ObjectCanBeReusedAfterReset()
public void ResetShouldSetReadOnlyToFalse()
{
clientSyncDictionary.Reset();
Assert.That(clientSyncDictionary.IsReadOnly, Is.False);
}
@ -319,7 +316,6 @@ public void ResetShouldSetReadOnlyToFalse()
public void ResetShouldClearChanges()
{
serverSyncDictionary.Reset();
Assert.That(serverSyncDictionary.GetChangeCount(), Is.Zero);
}
@ -327,7 +323,6 @@ public void ResetShouldClearChanges()
public void ResetShouldClearItems()
{
serverSyncDictionary.Reset();
Assert.That(serverSyncDictionary, Is.Empty);
}
}