diff --git a/src/benchmark.py b/src/benchmark.py new file mode 100644 --- /dev/null +++ b/src/benchmark.py @@ -0,0 +1,10 @@ +import cProfile + +from tests.testEngine import TestTransitions + + +t=TestTransitions() + +cProfile.run(r""" +t.testReal() +""")