Exemple #1
0
        public void DataTypeOtrIntShouldMatchOnComparison()
        {
            OtrInt int3 = 2;
            OtrInt int4 = 2;

            int3.Should().Be(int4);
        }
Exemple #2
0
        public void DataTypeOtrIntShouldSupportMaxValueOfUnassignedInt()
        {
            OtrInt int2 = uint.MaxValue;

            int2.Should().Be(uint.MaxValue);
        }
Exemple #3
0
        public void DataTypeOtrIntShouldWorkAsAnInt()
        {
            OtrInt int1 = 4;

            int1.Should().Be(4);
        }