Index: pkg/unittest/test/correct_callback_test.dart |
diff --git a/pkg/unittest/test/correct_callback_test.dart b/pkg/unittest/test/correct_callback_test.dart |
index a5689b94ecc43f866be31a29e655ac2be6029ad4..0e4d8a22b0525be071e9e4838956e4a8d9aadf44 100644 |
--- a/pkg/unittest/test/correct_callback_test.dart |
+++ b/pkg/unittest/test/correct_callback_test.dart |
@@ -2,20 +2,32 @@ |
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |
-library unittestTest; |
- |
-import 'dart:async'; |
-import 'dart:isolate'; |
+library unittest.correct_callback_test; |
+import 'package:metatest/metatest.dart'; |
import 'package:unittest/unittest.dart'; |
-part 'utils.dart'; |
+import 'utils.dart'; |
+ |
+void main() => initTests(_test); |
-var testName = 'correct callback test'; |
+void _test(message) { |
+ initMetatest(message); |
-var testFunction = (TestConfiguration testConfig) { |
- test(testName, |
- () =>_defer(expectAsync((){ ++testConfig.count;}))); |
-}; |
+ expectTestResults('correct callback test', () { |
+ var count = 0; |
+ test('test', () => defer(expectAsync(() { |
+ ++count; |
+ }))); |
-var expected = buildStatusString(1, 0, 0, testName, count: 1); |
+ test('verify count', () { |
+ expect(count, 1); |
+ }); |
+ }, [{ |
+ 'description': 'test', |
+ 'result': 'pass' |
+ }, { |
+ 'description': 'verify count', |
+ 'result': 'pass', |
+ }]); |
+} |