Пример #1
0
 def test_ncalls(self):
     t = Timer('test_ncalls')
     for i in range(10):
         t.start()
         t.stop()
     assert t.ncalls == 10
Пример #2
0
 def test_stop_nonstarted_fails(self):
     t = Timer('test_stop_nonstarted_fails')
     with pytest.raises(AssertionError):
         t.stop()
Пример #3
0
 def test_elapsed_nonstarted_fails(self):
     t = Timer('test_elapsed_nonstarted_fails')
     with pytest.raises(AssertionError):
         t.elapsed()
Пример #4
0
 def test_ncalls(self):
     t = Timer("test_ncalls")
     for i in range(10):
         t.start()
         t.stop()
     assert t.ncalls == 10
Пример #5
0
 def test_stop_nonstarted_fails(self):
     t = Timer("test_stop_nonstarted_fails")
     with pytest.raises(AssertionError):
         t.stop()
Пример #6
0
 def test_elapsed_nonstarted_fails(self):
     t = Timer("test_elapsed_nonstarted_fails")
     with pytest.raises(AssertionError):
         t.elapsed()