| OLD | NEW |
| 1 // Copyright (c) 2015, the Fletch project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Fletch 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 /// Modify this file to include more tests. | 5 /// Modify this file to include more tests. |
| 6 library fletch_tests.all_tests; | 6 library fletch_tests.all_tests; |
| 7 | 7 |
| 8 import 'dart:async' show | 8 import 'dart:async' show |
| 9 Completer, | 9 Completer, |
| 10 Future; | 10 Future; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'test_vm_connection/testCloseImmediately': | 97 'test_vm_connection/testCloseImmediately': |
| 98 test_vm_connection.testCloseImmediately, | 98 test_vm_connection.testCloseImmediately, |
| 99 'test_vm_connection/testCloseAfterCommitChanges': | 99 'test_vm_connection/testCloseAfterCommitChanges': |
| 100 test_vm_connection.testCloseAfterCommitChanges, | 100 test_vm_connection.testCloseAfterCommitChanges, |
| 101 'test_vm_connection/testCloseAfterProcessRun': | 101 'test_vm_connection/testCloseAfterProcessRun': |
| 102 test_vm_connection.testCloseAfterProcessRun, | 102 test_vm_connection.testCloseAfterProcessRun, |
| 103 | 103 |
| 104 // Test the mDNS package. | 104 // Test the mDNS package. |
| 105 // TODO(sgjesse) publish the mDNS package as an ordinary package an pull | 105 // TODO(sgjesse) publish the mDNS package as an ordinary package an pull |
| 106 // it in through third_party. | 106 // it in through third_party. |
| 107 'mdns_tests': mdns_tests.main, | 107 'mdns_tests/*': mdns_tests.listTests, |
| 108 }; | 108 }; |
| OLD | NEW |