public void getHashCodeReturnsDifferentCodeForDifferentInstancesWithDifferentUriRef() { UriRef instance = new UriRef("http://example.com/subject"); UriRef other = new UriRef("http://example.com/other"); Assert.IsFalse(instance.GetHashCode() == other.GetHashCode()); }