Exemplo n.º 1
0
        public void DataTypeOtrshortShouldMatchOnComparison()
        {
            OtrShort short3 = 2;
            OtrShort short4 = 2;

            short3.Should().Be(short4);
        }
Exemplo n.º 2
0
        public void DataTypeOtrShortShouldSupportMaxValueOfUnassignedShort()
        {
            OtrShort short2 = ushort.MaxValue;

            short2.Should().Be(ushort.MaxValue);
        }
Exemplo n.º 3
0
        public void DataTypeOtrShortShouldWorkAsAnShort()
        {
            OtrShort short1 = 4;

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