blob: a8b151a20ff12c612e4076eec593ab1f6d8a610e [file] [log] [blame]
// Copyright (c) 2016, 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:observatory_2/service_io.dart';
import 'package:test/test.dart';
import 'test_helper.dart';
var tests = <IsolateTest>[
(Isolate isolate) async {
Library root = await isolate.rootLibrary.load();
Class classLibrary = await root.clazz.load();
print(classLibrary);
{
final DartError errorResult = await classLibrary.evaluate('3 + 4');
print(errorResult);
expect(errorResult.toString(), contains('can be evaluated only'));
}
Class classClass = await classLibrary.clazz.load();
print(classClass);
{
final DartError errorResult = await classClass.evaluate('3 + 4');
print(errorResult);
expect(errorResult.toString(), contains('can be evaluated only'));
}
Instance someArray = await root.evaluate("new List(2)");
print(someArray);
expect(someArray is Instance, isTrue);
Class classArray = await someArray.clazz.load();
print(classArray);
dynamic result = await classArray.evaluate('3 + 4');
print(result);
expect(result is Instance, isTrue);
expect(result.valueAsString, equals('7'));
},
];
main(args) => runIsolateTests(args, tests);