Lib.test.test_timeit.py Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jython-installer Show documentation
Show all versions of jython-installer Show documentation
Jython is an implementation of the high-level, dynamic, object-oriented
language Python written in 100% Pure Java, and seamlessly integrated with
the Java platform. It thus allows you to run Python on any Java platform.
import timeit
import unittest
import test.test_support
# some uninspired unit tests extracted from the docs for timeit;
# changed number=10000 so we don't spend too much time testing this
# module in the regrtest
NUMBER = 10000 # Of times to execute in each test
class TestTimeit(unittest.TestCase):
def test_oct(self):
timing = timeit.Timer('for i in xrange(100): oct(i)', 'gc.enable()').timeit(number=NUMBER)
self.assertGreater(timing, 0.)
timing_vector = timeit.Timer('for i in xrange(100): oct(i)').repeat(number=NUMBER)
self.assertEqual(len(timing_vector), 3)
self.assertGreater(min(timing_vector), 0.)
def test_str(self):
s = """\
try:
str.__nonzero__
except AttributeError:
pass
"""
t = timeit.Timer(stmt=s)
timing = t.timeit(number=NUMBER)
self.assertGreater(timing, 0.)
timing_vector = t.repeat(number=NUMBER, repeat=10)
self.assertEqual(len(timing_vector), 10)
self.assertGreater(min(timing_vector), 0.)
def test_main():
test.test_support.run_unittest(TestTimeit)
if __name__ == "__main__":
test_main()