OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 library observe.test.benchmark.setup_object_benchmark; |
| 5 |
| 6 import 'setup_observation_benchmark_base.dart'; |
| 7 import 'test_observable.dart'; |
| 8 |
| 9 class SetupObjectBenchmark extends SetupObservationBenchmarkBase { |
| 10 SetupObjectBenchmark(int objectCount, String config) |
| 11 : super('SetupObjectBenchmark:$objectCount:$config', objectCount, config); |
| 12 |
| 13 @override |
| 14 TestObservable newObject() => new TestObservable(); |
| 15 } |
OLD | NEW |