blob: dbc6fb19afac453ccab982f5bc93f42fa890ac30 [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:analyzer/src/error/codes.dart';
import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../dart/resolution/context_collection_resolution.dart';
main() {
defineReflectiveSuite(() {
defineReflectiveTests(UnusedLabelTest);
});
}
@reflectiveTest
class UnusedLabelTest extends PubPackageResolutionTest {
test_unused_inSwitch() async {
await assertErrorsInCode(r'''
f(x) {
switch (x) {
label: case 0:
break;
default:
break;
}
}
''', [
error(HintCode.UNUSED_LABEL, 26, 6),
]);
}
test_unused_onWhile() async {
await assertErrorsInCode(r'''
f(condition()) {
label: while (condition()) {
break;
}
}
''', [
error(HintCode.UNUSED_LABEL, 19, 6),
]);
}
test_used_inSwitch() async {
await assertNoErrorsInCode(r'''
f(x) {
switch (x) {
label: case 0:
break;
default:
continue label;
}
}
''');
}
test_used_onWhile() async {
await assertNoErrorsInCode(r'''
f(condition()) {
label: while (condition()) {
break label;
}
}
''');
}
}