blob: 7e9f8fe55c85ba8898fa0b0f42ff70ea3b6a4e03 [file] [log] [blame]
// Copyright (c) 2019, 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.
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(IsNotTest);
defineReflectiveTests(IsNotWithNullSafetyTest);
defineReflectiveTests(IsTest);
defineReflectiveTests(IsWithNullSafetyTest);
});
}
@reflectiveTest
class IsNotTest extends PubPackageResolutionTest with WithoutNullSafetyMixin {
test_simple() async {
await resolveTestCode('''
void f(Object a) {
var b = a is! String;
print(b);
}
''');
assertType(findNode.simple('b)'), 'bool');
}
}
@reflectiveTest
class IsNotWithNullSafetyTest extends IsNotTest with WithNullSafetyMixin {}
@reflectiveTest
class IsTest extends PubPackageResolutionTest with WithoutNullSafetyMixin {
test_simple() async {
await resolveTestCode('''
void f(Object a) {
var b = a is String;
print(b);
}
''');
assertType(findNode.simple('b)'), 'bool');
}
}
@reflectiveTest
class IsWithNullSafetyTest extends IsTest with WithNullSafetyMixin {}