MegaApi.Tests.UnitTest_Utils.Test_ArrayConcat C# (CSharp) Method

Test_ArrayConcat() private method

private Test_ArrayConcat ( ) : void
return void
        public void Test_ArrayConcat()
        {
            uint[] a = new uint[] { 1, 2, 3 };
            uint[] b = new uint[] { 4, 5, 6 };

            uint[] expected = new uint[] { 1, 2, 3, 4, 5, 6 };
            uint[] actual = a.Concat(b);

            Assert.IsTrue(Utils.CompareTables(actual, expected));
        }