def test_false_tax_include(self): for cost in range(1, 4630): self.assertFalse(t1001.tax_include(cost))
def test_true_tax_include(self): for cost in range(4630, 1000, 5): self.assertTrue(t1001.tax_include(cost))