| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library unittest.skipped_soloed_nested_test; | 5 library unittest.skipped_soloed_nested_test; |
| 6 | 6 |
| 7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
| 8 | 8 |
| 9 import 'package:metatest/metatest.dart'; | 9 import 'package:metatest/metatest.dart'; |
| 10 | 10 |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 s.write('K'); | 58 s.write('K'); |
| 59 }); | 59 }); |
| 60 solo_test('nested non-solo group solo test', () { | 60 solo_test('nested non-solo group solo test', () { |
| 61 s.write('L'); | 61 s.write('L'); |
| 62 }); | 62 }); |
| 63 }); | 63 }); |
| 64 }); | 64 }); |
| 65 solo_test('final', () { | 65 solo_test('final', () { |
| 66 expect(s.toString(), "EGHIHJHKHL"); | 66 expect(s.toString(), "EGHIHJHKHL"); |
| 67 }); | 67 }); |
| 68 }, [{ | 68 }, [ |
| 69 'description': 'non-solo group solo_test in non-solo group', | 69 { |
| 70 'result': 'pass', | 70 'description': 'non-solo group solo_test in non-solo group', |
| 71 }, { | 71 'result': 'pass', |
| 72 'description': 'solo group solo group non-solo test', | 72 }, |
| 73 'result': 'pass', | 73 {'description': 'solo group solo group non-solo test', 'result': 'pass',}, |
| 74 }, { | 74 {'description': 'solo group solo group solo test', 'result': 'pass',}, |
| 75 'description': 'solo group solo group solo test', | 75 { |
| 76 'result': 'pass', | 76 'description': 'solo group nested non-solo group in solo group ' |
| 77 }, { | 77 'nested non-solo group non-solo test', |
| 78 'description': 'solo group nested non-solo group in solo group ' | 78 'result': 'pass', |
| 79 'nested non-solo group non-solo test', | 79 }, |
| 80 'result': 'pass', | 80 { |
| 81 }, { | 81 'description': 'solo group nested non-solo group in solo group ' |
| 82 'description': 'solo group nested non-solo group in solo group ' | 82 'nested non-solo group solo test', |
| 83 'nested non-solo group solo test', | 83 'result': 'pass', |
| 84 'result': 'pass', | 84 }, |
| 85 }, { | 85 {'description': 'final', 'result': 'pass',} |
| 86 'description': 'final', | 86 ]); |
| 87 'result': 'pass', | |
| 88 }]); | |
| 89 } | 87 } |
| OLD | NEW |