Ejemplo n.º 1
0
        public void Test7()
        {
            int[] a = new int[] { 121, 1440, 191, 161, 19, 144, 195, 11 };
            int[] b = new int[] { 11 * 11, 121 * 121, 1440 * 1440, 191 * 191, 161 * 161, 19 * 19, 144 * 144, 195 * 195 };
            bool  r = AreTheySame.comp(a, b); // True

            Assert.AreEqual(true, r);
        }
Ejemplo n.º 2
0
        public void AreTheySameTest()
        {
            int[] a = new int[] { 121, 144, 19, 161, 19, 144, 19, 11 };
            int[] b = new int[] { 11 * 11, 121 * 121, 144 * 144, 19 * 19, 161 * 161, 19 * 19, 144 * 144, 19 * 19 };
            bool  r = AreTheySame.comp(a, b);            // True

            Assert.True(r);
        }
Ejemplo n.º 3
0
        public void Test6()
        {
            int[] a = new int[] { 121, 144, 19, 161, 19, 144, 19, 11, 1008 };
            int[] b = new int[] { 11 * 11, 121 * 121, 144 * 144, 190 * 190, 161 * 161, 19 * 19, 144 * 144, 19 * 19 };
            bool  r = AreTheySame.comp(a, b); // False

            Assert.AreEqual(false, r);
        }
Ejemplo n.º 4
0
        public void TestSum1()
        {
            int[] a = new int[] { 1, 3, 1 };
            int[] b = new int[] { 1, 4, 4 };
            bool  r = AreTheySame.comp(a, b); // false

            Assert.AreEqual(false, r);
        }
Ejemplo n.º 5
0
        public void Test4()
        {
            int[] a = new int[0];
            int[] b = null;
            bool  r = AreTheySame.comp(a, b); // False

            Assert.AreEqual(false, r);
        }
Ejemplo n.º 6
0
        public void Test5()
        {
            int[] a = new int[0];
            int[] b = new int[0];
            bool  r = AreTheySame.comp(a, b); // True

            Assert.AreEqual(true, r);
        }
Ejemplo n.º 7
0
        public void Test1a()
        {
            int[] a = new int[] { 2, 2, 3 };
            int[] b = new int[] { 4, 9, 9 };
            bool  r = AreTheySame.comp(a, b); // false

            Assert.AreEqual(false, r);
        }
Ejemplo n.º 8
0
        public void Test2b()
        {
            int[] a = new int[] { 3, 4 };
            int[] b = new int[] { 0, 25 };
            bool  r = AreTheySame.comp(a, b); // false

            Assert.AreEqual(false, r);
        }
Ejemplo n.º 9
0
        public void Test9()
        {
            int[] a = new int[] { 0, 14, 191, 161, 19, 144, 195, 1, 2 };
            int[] b = new int[] { 1, 0, 14 * 14, 191 * 191, 161 * 161, 19 * 19, 144 * 144, 195 * 195, 3 };
            bool  r = AreTheySame.comp(a, b); // True

            Assert.AreEqual(false, r);
        }
Ejemplo n.º 10
0
    static void Main(string[] args)
    {
        int[] a = new int[] { 121, 144, 19, 161, 19, 144, 19, 11 };
        int[] b = new int[] { 11 * 11, 121 * 121, 144 * 144, 19 * 19, 161 * 161, 19 * 19, 144 * 144, 19 * 19 };
        bool  r = AreTheySame.comp(a, b); // True

        Console.WriteLine("AreTheySame.comp(a, b): {0}", r);

        int[] a1 = new int[] { 0, -14, 191, 161, 19, 144, 195, -1 };
        int[] b1 = new int[] { 1, 0, 196, 36481, 25921, 361, 20736, 38025 };
        bool  r1 = AreTheySame.comp(a1, b1); // True

        Console.WriteLine("AreTheySame.comp(a1, b1): {0}", r1);

        int[] a2 = new int[] {};
        int[] b2 = new int[] {};
        bool  r2 = AreTheySame.comp(a2, b2); // True

        Console.WriteLine("AreTheySame.comp(a1, b1): {0}", r2);

        Console.ReadKey();
    }
Ejemplo n.º 11
0
 public void AreTheySameArraysTests(int [] a, int [] b, bool result)
 {
     Assert.AreEqual(AreTheySame.comp(a, b), result);
 }