| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 // IsolateStubs=MintMakerPromiseWithStubsTest.dart:Mint,Purse | 5 // IsolateStubs=MintMakerPromiseWithStubsTest.dart:Mint,Purse |
| 6 | 6 |
| 7 #library("MintMakerPromiseWithStubsTest"); |
| 7 #import("../../isolate/src/TestFramework.dart"); | 8 #import("../../isolate/src/TestFramework.dart"); |
| 8 | 9 |
| 9 interface Mint factory MintImpl { | 10 interface Mint factory MintImpl { |
| 10 | 11 |
| 11 Mint(); | 12 Mint(); |
| 12 | 13 |
| 13 Purse createPurse(int balance); | 14 Purse createPurse(int balance); |
| 14 | 15 |
| 15 } | 16 } |
| 16 | 17 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 expect.succeeded(); | 120 expect.succeeded(); |
| 120 print("##DONE##"); | 121 print("##DONE##"); |
| 121 }); | 122 }); |
| 122 } | 123 } |
| 123 | 124 |
| 124 } | 125 } |
| 125 | 126 |
| 126 main() { | 127 main() { |
| 127 runTests([MintMakerPromiseWithStubsTest.testMain]); | 128 runTests([MintMakerPromiseWithStubsTest.testMain]); |
| 128 } | 129 } |
| OLD | NEW |