hbui
2024-07-19 5c28e0abb061a32f61ad0626cbba64a1fbcd4576
num-int/test/numint/RiemannSum_test.py
@@ -4,15 +4,17 @@
class RiemannSumTestCase(unittest.TestCase):
    """
    TODO (Aufgabe) Schreiben Sie Kriterien in Unittest
    """
    def test_split_interval(self):
        split(iteration=6)
    def test_numint(self):
        def fn(x) : return x**2
        (a, b) = (0, 2)
        (l, r) = numint(fn, a, b)
        print(l, r)
        (l, r, *_) = numint(fn, a, b)
        # print(l, r)  # print Take too much place on screen
        pass
    def test_numint_compact(self):