blob: a4c1fde38fe83100df9f0de049261d2c17f190af [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.
library breakpoint_in_parts_class;
import 'test_helper.dart';
import 'service_test_common.dart';
const int LINE = 17;
const String file = "breakpoint_on_if_null_3_test.dart";
code() {
foo(42);
}
foo(dynamic args) {
if (args == null) {
print("was null");
}
if (args != null) {
print("was not null");
}
if (args == 42) {
print("was 42!");
}
}
List<String> stops = [];
List<String> expected = [
"$file:${LINE + 0}:13", // on 'args'
"$file:${LINE + 1}:12", // on '=='
"$file:${LINE + 4}:12", // on '!='
"$file:${LINE + 5}:5", // on 'print'
"$file:${LINE + 7}:12", // on '=='
"$file:${LINE + 8}:5", // on 'print'
"$file:${LINE + 10}:1", // on ending '}'
];
var tests = <IsolateTest>[
hasPausedAtStart,
setBreakpointAtUriAndLine(file, LINE),
runStepThroughProgramRecordingStops(stops),
checkRecordedStops(stops, expected)
];
main(args) {
runIsolateTestsSynchronous(args, tests,
testeeConcurrent: code, pause_on_start: true, pause_on_exit: true);
}