コード例 #1
0
 public void EuclidGCDTest_AcceptsEmptyArray_ThrowsException(params int[] array) => Assert.Throws <ArgumentNullException>(() => GCDMethods.EuclidGCD(array));
コード例 #2
0
 public int EuclidGCDTest(params int[] array) => GCDMethods.EuclidGCD(array);