public void SteinGCDTest_AcceptsEmptyArray_ThrowsException(params int[] array) => Assert.Throws <ArgumentNullException>(() => GCDMethods.SteinGCD(array));
 public int SteinGCDTest(params int[] array) => GCDMethods.SteinGCD(array);