public void SingleNumberTest_input_arr_4_1_2_1_2_output_4() { int[] input = new int[] { 4, 1, 2, 1, 2 }; int expected = 4; MyTask target = new MyTask(); int result = target.SingleNumber(input); Assert.AreEqual(expected, result); }