dart-sdk/pkg/vm_service/test/breakpoint_in_parts_class_test.dart
Ben Konyi 76a74ba678 [ package:vm_service ] Migrate Observatory service tests to package:vm_service (Pt 1)
See https://github.com/dart-lang/sdk/issues/45037

TEST=pkg/vm_service/test/*

Change-Id: I20bfc03ae40bc41ee4d965a71f090ecf974e4e59
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/185522
Commit-Queue: Ben Konyi <bkonyi@google.com>
Reviewed-by: Siva Annamalai <asiva@google.com>
2021-11-05 17:04:07 +00:00

44 lines
1,022 B
Dart

// Copyright (c) 2017, 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 'common/service_test_common.dart';
import 'common/test_helper.dart';
part 'breakpoint_in_parts_class_part.dart';
const int LINE = 87;
const String file = "breakpoint_in_parts_class_part.dart";
code() {
final foo = Foo10("Foo!");
print(foo);
}
List<String> stops = [];
List<String> expected = [
"$file:${LINE + 0}:5", // on 'print'
"$file:${LINE + 1}:3" // on class ending '}'
];
var tests = <IsolateTest>[
hasPausedAtStart,
setBreakpointAtUriAndLine(file, LINE),
runStepThroughProgramRecordingStops(stops),
checkRecordedStops(stops, expected)
];
main(args) {
runIsolateTestsSynchronous(
args,
tests,
'breakpoint_in_parts_class_test.dart',
testeeConcurrent: code,
pause_on_start: true,
pause_on_exit: true,
);
}