public void NameValue_GetHashCode_NameEmpty() { var constructor = new NameValue(null, "testValue"); Assert.IsNotNull(constructor); Assert.AreNotEqual(0, constructor.GetHashCode()); }
public void NameValue_GetHashCode_ValueEmpty() { var constructor = new NameValue("Name", null); Assert.IsNotNull(constructor); Assert.AreNotEqual(0, constructor.GetHashCode()); }
public void NameValue_GetHashCode() { var constructor = new NameValue("testName", "testValue"); Assert.IsNotNull(constructor); Assert.AreNotEqual("0", constructor.GetHashCode()); }