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

Unified Diff: pkg/analyzer/test/generated/element_test.dart

Issue 844593003: Remove Angular support from the analyzer and analysis_server packages. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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
« no previous file with comments | « pkg/analyzer/test/generated/all_the_rest_test.dart ('k') | pkg/analyzer/test/generated/engine_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/generated/element_test.dart
diff --git a/pkg/analyzer/test/generated/element_test.dart b/pkg/analyzer/test/generated/element_test.dart
index 145f8ea7bdc4ea4d182a203c7bd6c08613ac472f..e3bcf5591b4684cd1055dbf63f7fef2fff8312e2 100644
--- a/pkg/analyzer/test/generated/element_test.dart
+++ b/pkg/analyzer/test/generated/element_test.dart
@@ -24,7 +24,6 @@ import 'test_support.dart';
main() {
groupSep = ' | ';
- runReflectiveTests(AngularPropertyKindTest);
runReflectiveTests(ElementKindTest);
runReflectiveTests(FunctionTypeImplTest);
runReflectiveTests(InterfaceTypeImplTest);
@@ -41,39 +40,6 @@ main() {
}
@ReflectiveTestCase()
-class AngularPropertyKindTest extends EngineTestCase {
- void test_ATTR() {
- AngularPropertyKind kind = AngularPropertyKind.ATTR;
- expect(kind.callsGetter(), isFalse);
- expect(kind.callsSetter(), isTrue);
- }
-
- void test_CALLBACK() {
- AngularPropertyKind kind = AngularPropertyKind.CALLBACK;
- expect(kind.callsGetter(), isFalse);
- expect(kind.callsSetter(), isTrue);
- }
-
- void test_ONE_WAY() {
- AngularPropertyKind kind = AngularPropertyKind.ONE_WAY;
- expect(kind.callsGetter(), isFalse);
- expect(kind.callsSetter(), isTrue);
- }
-
- void test_ONE_WAY_ONE_TIME() {
- AngularPropertyKind kind = AngularPropertyKind.ONE_WAY_ONE_TIME;
- expect(kind.callsGetter(), isFalse);
- expect(kind.callsSetter(), isTrue);
- }
-
- void test_TWO_WAY() {
- AngularPropertyKind kind = AngularPropertyKind.TWO_WAY;
- expect(kind.callsGetter(), isTrue);
- expect(kind.callsSetter(), isTrue);
- }
-}
-
-@ReflectiveTestCase()
class ClassElementImplTest extends EngineTestCase {
void test_getAllSupertypes_interface() {
ClassElement classA = ElementFactory.classElement2("A");
« no previous file with comments | « pkg/analyzer/test/generated/all_the_rest_test.dart ('k') | pkg/analyzer/test/generated/engine_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698