Jelajahi Sumber

Add 0/0 test. Closes #5061

hughsando 7 tahun lalu
induk
melakukan
8c5c73e0eb
1 mengubah file dengan 1 tambahan dan 0 penghapusan
  1. 1 0
      tests/unit/src/unitstd/Math.unit.hx

+ 1 - 0
tests/unit/src/unitstd/Math.unit.hx

@@ -8,6 +8,7 @@ Math.isNaN(Math.NaN) == true;
 Math.isNaN(Math.sqrt( -1)) == true;
 Math.NEGATIVE_INFINITY == Math.NEGATIVE_INFINITY;
 Math.POSITIVE_INFINITY == Math.POSITIVE_INFINITY;
+Math.isNaN(0/0) == true;
 // +
 Math.POSITIVE_INFINITY + Math.POSITIVE_INFINITY == Math.POSITIVE_INFINITY;
 Math.NEGATIVE_INFINITY + Math.NEGATIVE_INFINITY == Math.NEGATIVE_INFINITY;