Lines Matching full: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(
30 # Test creating a benchmark field with default fields left out.
31 b2 = Benchmark(
43 b3 = Benchmark(
54 # Check to see if the args to Benchmark have changed since the last time
60 arg_spec = inspect.getargspec(Benchmark.__init__)