Ejemplo n.º 1
0
 public void ArrayCreate2()
 {
     CollectionAssert.AreEqual(new int[] { 3, 2, 1 }, YourTasksHere1.ArrayCreate(3));
 }
Ejemplo n.º 2
0
 public void ArrayCreate3()
 {
     CollectionAssert.AreEqual(new int[] { 5, 4, 3, 2, 1 }, YourTasksHere1.ArrayCreate(5));
 }
Ejemplo n.º 3
0
 public void ArrayCreate1()
 {
     CollectionAssert.AreEqual(new int[] { 1 }, YourTasksHere1.ArrayCreate(1));
 }