public void Return_False_WhenDoesNotContainKey(string key) { // Arrange Indexed sut = new Indexed(new TestPerson(), true, TestHelper.GetMockedFunkyFactory().Object); // Act bool result = sut.ContainsKey(key); // Assert Assert.IsFalse(result); }