示例#1
0
 public void IsEmptyWhenCreated()
 {
     Assert.That(map.IsEmpty());
 }
示例#2
0
 private void AssertSize(int expected)
 {
     Assert.That(map.Count(), Is.EqualTo(expected));
     Assert.That(map.IsEmpty(), Is.EqualTo(0 == expected));
 }