Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Unified Diff: pkg/analysis_server/test/analysis_notification_navigation_test.dart

Issue 338683003: Extract 'DartUnitHighlightsComputer' tests into a separate file. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/analysis_notification_navigation_test.dart
diff --git a/pkg/analysis_server/test/analysis_notification_navigation_test.dart b/pkg/analysis_server/test/analysis_notification_navigation_test.dart
index e87a42c2b1ee6a8cfe6b75270cbfba19ed3d4d84..c2b7b7e338a51fce27f759a3564c365b1792c13f 100644
--- a/pkg/analysis_server/test/analysis_notification_navigation_test.dart
+++ b/pkg/analysis_server/test/analysis_notification_navigation_test.dart
@@ -17,13 +17,13 @@ import 'reflective_tests.dart';
main() {
group('notification.navigation', () {
- runReflectiveTests(AnalysisNotificationNavigationTest);
+ runReflectiveTests(_AnalysisNotificationNavigationTest);
Brian Wilkerson 2014/06/18 16:28:37 Is there any reason to make any test code private?
scheglov 2014/06/18 16:34:47 I do it by the same reasons as for the all code -
});
}
@ReflectiveTestCase()
-class AnalysisNotificationNavigationTest extends AbstractAnalysisTest {
+class _AnalysisNotificationNavigationTest extends AbstractAnalysisTest {
List<_NavigationRegion> regions;
_NavigationRegion testRegion;
List<_NavigationTarget> testTargets;

Powered by Google App Engine
This is Rietveld 408576698