Ejemplo n.º 1
0
        public void TestMethod3()
        {
            int actual   = ByteInsert.InsertNumber(8, 15, 3, 8);
            int expected = 120;

            Assert.AreEqual(actual, expected);
        }
Ejemplo n.º 2
0
        public void TestMethod4()
        {
            int actual   = ByteInsert.InsertNumber(-8, -15, 0, 0);
            int expected = -7;

            Assert.AreEqual(actual, expected);
        }
Ejemplo n.º 3
0
        public void TestMethod2()
        {
            int actual   = ByteInsert.InsertNumber(8, 15, 0, 0);
            int expected = 9;

            Assert.AreEqual(actual, expected);
        }