OLD | NEW |
1 typedef void Test(); | 1 typedef void Test(); |
2 typedef void Operation(); | 2 typedef void Operation(); |
3 typedef void Reporter(Map<String, Result> results); | 3 typedef void Reporter(Map<String, Result> results); |
4 | 4 |
5 class Suite { | 5 class Suite { |
6 /** | 6 /** |
7 * Ctor. | 7 * Ctor. |
8 * [:_window:] The window of the suite. | 8 * [:_window:] The window of the suite. |
9 * [:_name:] The name of the suite. | 9 * [:_name:] The name of the suite. |
10 */ | 10 */ |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
126 | 126 |
127 List<Operation> _operations; | 127 List<Operation> _operations; |
128 int _nTests; | 128 int _nTests; |
129 int _nRanTests; | 129 int _nRanTests; |
130 | 130 |
131 Suite _addOperation(Operation operation) { | 131 Suite _addOperation(Operation operation) { |
132 _operations.add(operation); | 132 _operations.add(operation); |
133 return this; | 133 return this; |
134 } | 134 } |
135 } | 135 } |
OLD | NEW |