| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 library test.integration.server.get.version; | 5 library test.integration.server.get.version; |
| 6 | 6 |
| 7 | 7 |
| 8 import 'package:analysis_testing/reflective_tests.dart'; | 8 import '../../reflective_tests.dart'; |
| 9 | 9 |
| 10 import '../integration_tests.dart'; | 10 import '../integration_tests.dart'; |
| 11 | 11 |
| 12 @ReflectiveTestCase() | 12 @ReflectiveTestCase() |
| 13 class Test extends AbstractAnalysisServerIntegrationTest { | 13 class Test extends AbstractAnalysisServerIntegrationTest { |
| 14 test_getVersion() { | 14 test_getVersion() { |
| 15 return sendServerGetVersion(); | 15 return sendServerGetVersion(); |
| 16 } | 16 } |
| 17 } | 17 } |
| 18 | 18 |
| 19 main() { | 19 main() { |
| 20 runReflectiveTests(Test); | 20 runReflectiveTests(Test); |
| 21 } | 21 } |
| OLD | NEW |