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