| 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.services.refactoring.naming_conventions; | 5 import 'package:analysis_server/protocol/protocol_generated.dart' |
| 6 | |
| 7 import 'package:analysis_server/plugin/protocol/protocol.dart' | |
| 8 show RefactoringProblemSeverity; | 6 show RefactoringProblemSeverity; |
| 9 import 'package:analysis_server/src/services/refactoring/naming_conventions.dart
'; | 7 import 'package:analysis_server/src/services/refactoring/naming_conventions.dart
'; |
| 10 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; | 8 import 'package:analysis_server/src/services/refactoring/refactoring.dart'; |
| 11 import 'package:test_reflective_loader/test_reflective_loader.dart'; | 9 import 'package:test_reflective_loader/test_reflective_loader.dart'; |
| 12 | 10 |
| 13 import 'abstract_refactoring.dart'; | 11 import 'abstract_refactoring.dart'; |
| 14 | 12 |
| 15 main() { | 13 main() { |
| 16 defineReflectiveSuite(() { | 14 defineReflectiveSuite(() { |
| 17 defineReflectiveTests(NamingConventionsTest); | 15 defineReflectiveTests(NamingConventionsTest); |
| (...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 747 void test_validateVariableName_OK_middleUnderscore() { | 745 void test_validateVariableName_OK_middleUnderscore() { |
| 748 assertRefactoringStatusOK(validateVariableName("new_name")); | 746 assertRefactoringStatusOK(validateVariableName("new_name")); |
| 749 } | 747 } |
| 750 | 748 |
| 751 void test_validateVariableName_trailingBlanks() { | 749 void test_validateVariableName_trailingBlanks() { |
| 752 assertRefactoringStatus( | 750 assertRefactoringStatus( |
| 753 validateVariableName("newName "), RefactoringProblemSeverity.FATAL, | 751 validateVariableName("newName "), RefactoringProblemSeverity.FATAL, |
| 754 expectedMessage: "Variable name must not start or end with a blank."); | 752 expectedMessage: "Variable name must not start or end with a blank."); |
| 755 } | 753 } |
| 756 } | 754 } |
| OLD | NEW |