blob: a82ea75c9d5397b49296a551f87cf7aa0253b481 [file] [log] [blame]
// Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../support/integration_tests.dart';
void main() {
defineReflectiveSuite(() {
defineReflectiveTests(GetVersionTest);
});
}
@reflectiveTest
class GetVersionTest extends AbstractAnalysisServerIntegrationTest {
Future<void> test_getVersion() {
return sendServerGetVersion();
}
}