Home | History | Annotate | Download | only in crosperf

Lines Matching refs:benchmark

4 """Unit tests for the Crosperf Benchmark class."""
9 from benchmark import Benchmark
15 """Individual tests for the Benchmark class."""
18 # Test creating a benchmark with all the fields filled out.
19 b1 = Benchmark('b1_test', # name
29 # Test creating a benchmark field with default fields left out.
30 b2 = Benchmark('b2_test', # name
41 b3 = Benchmark('b3_test', # name
51 # Check to see if the args to Benchmark have changed since the last time
56 arg_spec = inspect.getargspec(Benchmark.__init__)