def test_duration(self): test = Timer(self.subject) test.start() time.sleep(.001) test.stop() duration = test.duration() self.assertNotEqual(duration, 0)
def test_formatted_time_success(self): test = Timer(self.subject) test.start() time.sleep(.001) test.stop() duration = test.duration() message = "{} lasted {} seconds".format(self.subject, duration) self.assertEqual(test.formatted_time(), message)
def test_total_method(self): small_timer_len = Timer("small_data_len") small_timer_loop = Timer("small_data_loop") big_timer_len = Timer("big_data_len") big_timer_loop = Timer("big_data_loop") small_timer_len.start() small_total_len = self.test.get_total_count(self.small_test_data) small_timer_len.stop() small_loop_value_counts = self.test.get_element_frequency(self.small_test_data) small_timer_loop.start() small_total_loop = self.test.get_element_frequency_total(small_loop_value_counts) small_timer_loop.stop() big_timer_len.start() big_total_len = self.test.get_total_count(self.big_test_data) big_timer_len.stop() big_loop_value_counts = self.test.get_element_frequency(self.big_test_data) big_timer_loop.start() big_total_loop = self.test.get_element_frequency_total(big_loop_value_counts) big_timer_loop.stop() self.assertEqual(len(self.small_test_data), small_total_len) self.assertEqual(len(self.small_test_data), small_total_loop) self.assertEqual(len(self.big_test_data), big_total_len) self.assertEqual(len(self.big_test_data), big_total_loop) print(small_timer_len.formatted_time()) print(small_timer_loop.formatted_time()) print(big_timer_len.formatted_time()) print(big_timer_loop.formatted_time()) small_len_faster = small_timer_len.duration() < small_timer_loop.duration() self.assertTrue(small_len_faster) big_len_faster = big_timer_len.duration() < big_timer_loop.duration() self.assertTrue(big_len_faster)