コード例 #1
0
        public void InequalityCorrect()
        {
            AnnotationSegment annotationSegment1 = new AnnotationSegment(HardCodedTestModel.GetPrimitiveAnnotationTerm());
            AnnotationSegment annotationSegment2 = new AnnotationSegment(HardCodedTestModel.GetComplexAnnotationTerm());
            BatchSegment      batchSegment       = BatchSegment.Instance;

            annotationSegment1.Equals(annotationSegment2).Should().BeFalse();
            annotationSegment1.Equals(batchSegment).Should().BeFalse();
        }