| 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");
|
|
|