コード例 #1
0
ファイル: UriRefTest.cs プロジェクト: Titan512/spiralrdf
        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());
        }