]> git.scottworley.com Git - inverse-tax/commitdiff
Broad testing (it works now)
authorScott Worley <scottworley@scottworley.com>
Thu, 23 May 2019 21:39:52 +0000 (14:39 -0700)
committerScott Worley <scottworley@scottworley.com>
Thu, 23 May 2019 21:39:52 +0000 (14:39 -0700)
tax.test.js

index 58995ef74db6ba1541d7eccc10bde6430870c4bd..21b98b62a01955df27e6c9e2931c40ae66e385d9 100644 (file)
@@ -61,4 +61,14 @@ test("invert", () => {
   assert.strictEqual(invert([[0, 100, .1], [100, Infinity, .2]])(170), 200);
   assert.strictEqual(invert([[0, 100, .1], [100, Infinity, .2]])(112), 127.5);
   assert.strictEqual(invert([[6, 90, 0.75], [90, Infinity, 0.12]])(27), 90);
+
+  for (var i = 0; i < 1000; i++) {
+    const t = make_random_tax_table();
+    const inverted_t = invert(t);
+    for (var j = 0; j < 20; j++) {
+      const net = rand(250);
+      const gross = inverted_t(net);
+      assert.ok(near(net, gross - tax(t, gross)));
+    }
+  }
 });