19a44a67a6
With this change, there is a separate subfolder in "test/integration" for each domain, and each subfolder has its own "test_all.dart". This change is almost entirely code motion. The only material change is that two tests have been dropped: - test_connected(): this test is now unnecessary since every time the "server.connected" message is received, the generated code in integration_test_methods.dart verifies that it is well-formed. - test_error(): this was a placeholder to remind us to test the "server.error" notification. On further reflection, it's unlikely that we'll be able to integration test this notification, since it only occurs in the event of a server bug. R=jwren@google.com Review URL: https://codereview.chromium.org//458453003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@39112 260f80e4-7a28-3924-810f-c04153c831b5
20 lines
522 B
Dart
20 lines
522 B
Dart
// 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.
|
|
|
|
library test.integration.completion.all;
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
import 'get_suggestions_test.dart' as get_suggestions_test;
|
|
|
|
/**
|
|
* Utility for manually running all integration tests.
|
|
*/
|
|
main() {
|
|
groupSep = ' | ';
|
|
group('completion', () {
|
|
get_suggestions_test.main();
|
|
});
|
|
}
|