kind of silly - quick fractions

This commit is contained in:
2022-06-21 21:07:04 +00:00
parent c71def4638
commit db7a3a02f5
5 changed files with 73 additions and 0 deletions

View File

@@ -359,6 +359,11 @@ class BasicTestCase extends Test {
function testInsertUTestCase() {
_testInsertUTestCase();
}
function testQuickFractions() {
_testQuickFractions();
}
}

View File

@@ -681,3 +681,7 @@ From:[(assert false (+ \"false \" \"should \" \"have \" \"been \" \"true\"))]" m
// The test here is that this was inserted by insertUTestCase :)
(function _testInsertUTestCase []
(Assert.pass))
(function _testQuickFractions []
(Assert.equals 0.5 (fHalf 1))
(Assert.equals 0 (iHalf 1)))