| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright (c) 2014 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2014 The Chromium Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
| 5 found in the LICENSE file. | 5 found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 | 7 |
| 8 <link rel="import" href="/tracing/base/guid.html"> | 8 <link rel="import" href="/tracing/base/guid.html"> |
| 9 <link rel="import" href="/tracing/base/statistics.html"> | 9 <link rel="import" href="/tracing/base/math/statistics.html"> |
| 10 <link rel="import" href="/tracing/base/unittest/constants.html"> | 10 <link rel="import" href="/tracing/base/unittest/constants.html"> |
| 11 <link rel="import" href="/tracing/base/unittest/test_case.html"> | 11 <link rel="import" href="/tracing/base/unittest/test_case.html"> |
| 12 | 12 |
| 13 <script> | 13 <script> |
| 14 'use strict'; | 14 'use strict'; |
| 15 | 15 |
| 16 tr.exportTo('tr.b.unittest', function() { | 16 tr.exportTo('tr.b.unittest', function() { |
| 17 var TestCase = tr.b.unittest.TestCase; | 17 var TestCase = tr.b.unittest.TestCase; |
| 18 var PerfTestCase = tr.b.unittest.PerfTestCase; | 18 var PerfTestCase = tr.b.unittest.PerfTestCase; |
| 19 | 19 |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 throw new Error('testSuites can only be defined during suite loading'); | 126 throw new Error('testSuites can only be defined during suite loading'); |
| 127 global._currentSuiteLoader.constructAndRegisterTestSuite(suiteConstructor); | 127 global._currentSuiteLoader.constructAndRegisterTestSuite(suiteConstructor); |
| 128 } | 128 } |
| 129 | 129 |
| 130 return { | 130 return { |
| 131 TestSuite, | 131 TestSuite, |
| 132 testSuite, | 132 testSuite, |
| 133 }; | 133 }; |
| 134 }); | 134 }); |
| 135 </script> | 135 </script> |
| OLD | NEW |