public void DataTypeOtrIntShouldMatchOnComparison() { OtrInt int3 = 2; OtrInt int4 = 2; int3.Should().Be(int4); }
public void DataTypeOtrIntShouldSupportMaxValueOfUnassignedInt() { OtrInt int2 = uint.MaxValue; int2.Should().Be(uint.MaxValue); }
public void DataTypeOtrIntShouldWorkAsAnInt() { OtrInt int1 = 4; int1.Should().Be(4); }