Beispiel #1
0
        public void AreNotEqualTest(int in1, int in2)
        {
            var f161 = new Fixed <Q16_16>(in1);
            var f162 = new Fixed <Q16_16>(in2);

            Assert.False(f161.Equals(f162));

            var f241 = new Fixed <Q24_8>(in1);
            var f242 = new Fixed <Q24_8>(in2);

            Assert.False(f241.Equals(f242));

            var f81 = new Fixed <Q8_24>(in1);
            var f82 = new Fixed <Q8_24>(in2);

            Assert.False(f81.Equals(f82));
        }