blob: b1dbd2aaa2edb2a56412ea8aa6a1654a152ac88a [file]
// Copyright (c) 2023, 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 'common/service_test_common.dart';
import 'step_through_operator_bracket_lib.dart' as testee_lib;
void main([List<String> args = const <String>[]]) => IsolateTestHarness(
'step_through_operator_bracket_lib.dart',
args,
)
.hasPausedAtStart()
.setBreakpointAtLine('LINE_A')
.runStepThroughProgramRecordingStops()
.checkRecordedStops()
.run(
testeeMain: testee_lib.main,
pauseOnStart: true,
pauseOnExit: true,
);