Exemple #1
0
        public void Combine()
        {
            //Arrange
            int[] first  = { 1, 2 };
            int[] second = { 3, 4 };

            // Act
            int[] result = UTArray.Combine(first, second);

            // Assert
            int index = 1;

            foreach (int x in result)
            {
                Assert.That(x == index++);
            }
        }