blob: 35a0efc0265e44c0e6be45b66373f7cacf4e3380 [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 '../driver_resolution.dart';
import '../with_null_safety_mixin.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(IsNotTest);
defineReflectiveTests(IsNotWithNnbdTest);
defineReflectiveTests(IsTest);
defineReflectiveTests(IsWithNnbdTest);
});
}
@reflectiveTest
class IsNotTest extends DriverResolutionTest {
test_simple() async {
await resolveTestCode('''
void f(Object a) {
var b = a is! String;
print(b);
}
''');
assertType(findNode.simple('b)'), 'bool');
}
}
@reflectiveTest
class IsNotWithNnbdTest extends IsNotTest with WithNullSafetyMixin {}
@reflectiveTest
class IsTest extends DriverResolutionTest {
test_simple() async {
await resolveTestCode('''
void f(Object a) {
var b = a is String;
print(b);
}
''');
assertType(findNode.simple('b)'), 'bool');
}
}
@reflectiveTest
class IsWithNnbdTest extends IsTest with WithNullSafetyMixin {}