| OLD | NEW |
| 1 library jasmine; | 1 library jamine; |
| 2 | 2 |
| 3 import 'package:unittest/unittest.dart' as unit; | 3 import 'package:unittest/unittest.dart' as unit; |
| 4 import 'package:angular/utils.dart' as utils; | 4 import 'package:angular/utils.dart' as utils; |
| 5 | 5 |
| 6 Function _wrapFn; | 6 Function _wrapFn; |
| 7 | 7 |
| 8 _maybeWrapFn(fn) => () { | 8 _maybeWrapFn(fn) => () { |
| 9 if (_wrapFn != null) { | 9 if (_wrapFn != null) { |
| 10 _wrapFn(fn)(); | 10 _wrapFn(fn)(); |
| 11 } else { | 11 } else { |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 | 144 |
| 145 SpyFunction spyOn(receiver, methodName) { | 145 SpyFunction spyOn(receiver, methodName) { |
| 146 throw ["spyOn not implemented"]; | 146 throw ["spyOn not implemented"]; |
| 147 } | 147 } |
| 148 } | 148 } |
| 149 | 149 |
| 150 main(){ | 150 main(){ |
| 151 unit.setUp(currentDescribe.setUp); | 151 unit.setUp(currentDescribe.setUp); |
| 152 unit.tearDown(currentDescribe.tearDown); | 152 unit.tearDown(currentDescribe.tearDown); |
| 153 } | 153 } |
| OLD | NEW |