blob: 63618fdc50b0d4eea7cdbdb28f09de517357daf0 [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 {
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 {
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 {}