class TestVode(unittest.TestCase, TestSkeletonWithBackwards):
    def initialise(self, f, jac, **kwargs):
        self.integrator = ODE_wrapper(f, jac)
        self.integrator.set_integrator("vode")

    # Because this integrator likes to flood the screen with status reports rather than throwing an error
    def test_failed_integration(self):
        pass
class TestDop853(unittest.TestCase, TestSkeletonWithBackwards):
    def initialise(self, f, jac, **kwargs):
        self.integrator = ODE_wrapper(f)
        self.integrator.set_integrator("dop853")