public void SetUp()
 {
     this.model = SimplifiedKeyDictionaryMother.Implementation.Create();
 }
 public void Ctor_WithNoArguments_CreatesModelWithZeroCount()
 {
     var local = new SimplifiedKeyDictionaryMother.Implementation();
     Assert.IsNotNull(local);
     Assert.AreEqual(0, local.Count);
     AssertEnumerator(local);
 }