1import time 2import unittest 3 4 5class TestPython(unittest.TestCase): 6 def test_monotonic(self): 7 val1 = time.monotonic() 8 val2 = time.monotonic() 9 self.assertGreaterEqual(val2, val1) 10