コード例 #1
0
        public void TestBsonRegularExpressionEquals()
        {
            BsonRegularExpression lhs = new BsonRegularExpression("pattern", "options");
            BsonRegularExpression rhs = new BsonRegularExpression("pattern", "options");

            Assert.NotSame(lhs, rhs);
            Assert.Equal(lhs, rhs);
            Assert.Equal(lhs.GetHashCode(), rhs.GetHashCode());
        }
コード例 #2
0
ファイル: BsonEqualsTests.cs プロジェクト: RavenZZ/MDRelation
 public void TestBsonRegularExpressionEquals()
 {
     BsonRegularExpression lhs = new BsonRegularExpression("pattern", "options");
     BsonRegularExpression rhs = new BsonRegularExpression("pattern", "options");
     Assert.NotSame(lhs, rhs);
     Assert.Equal(lhs, rhs);
     Assert.Equal(lhs.GetHashCode(), rhs.GetHashCode());
 }