from unittest import TestCase from example2 import Example2App class TestExample2App(TestCase): def test_find_smallest_positive(self): actual = Example2App._find_smallest_positive([5.0, 2.0, 4.0]) self.assertEqual(actual, 2.0)