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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 'test_vm_connection/testCloseImmediately': | 99 'test_vm_connection/testCloseImmediately': |
100 test_vm_connection.testCloseImmediately, | 100 test_vm_connection.testCloseImmediately, |
101 'test_vm_connection/testCloseAfterCommitChanges': | 101 'test_vm_connection/testCloseAfterCommitChanges': |
102 test_vm_connection.testCloseAfterCommitChanges, | 102 test_vm_connection.testCloseAfterCommitChanges, |
103 'test_vm_connection/testCloseAfterProcessRun': | 103 'test_vm_connection/testCloseAfterProcessRun': |
104 test_vm_connection.testCloseAfterProcessRun, | 104 test_vm_connection.testCloseAfterProcessRun, |
105 | 105 |
106 // Test the mDNS package. | 106 // Test the mDNS package. |
107 // TODO(sgjesse) publish the mDNS package as an ordinary package an pull | 107 // TODO(sgjesse) publish the mDNS package as an ordinary package an pull |
108 // it in through third_party. | 108 // it in through third_party. |
109 'mdns_tests': mdns_tests.main, | 109 'mdns_tests/*': mdns_tests.listTests, |
110 | 110 |
111 // Test for the golem performance tracking infrastructure. | 111 // Test for the golem performance tracking infrastructure. |
112 // If this test breaks you probably need to update the golem performance | 112 // If this test breaks you probably need to update the golem performance |
113 // tracking infrastructure as well. | 113 // tracking infrastructure as well. |
114 'golem_tests': golem_tests.main, | 114 'golem_tests': golem_tests.main, |
115 }; | 115 }; |
OLD | NEW |