public void IsNotAPythagoreanTriplet(ulong a, ulong b, ulong c)
 {
     Assert.False(NumberHelpers.IsAPythagoreanTriplet(a, b, c));
 }