Copyright Messages Cleanup
[optf/has.git] / conductor / conductor / tests / unit / test_sample.py
1 import unittest
2
3 def fun(x):
4     return x + 1
5
6 class SimpleIntegralIncrementTest(unittest.TestCase):
7     def test(self):
8         self.assertEqual(fun(3), 4)