Files
sdk/tests/lib_2/html/js_dart_to_string_test.dart
T
Srujan Gaddam 6ae9dedc60 Migrate html tests off of unittest.dart
Changed tests either use expect/minitest or async_helper/async_minitest
as a replacement. There are still a few outstanding tests that need to
be migrated off of unittest.dart.

Change-Id: I9231d453f61507110b5a89360dfb9e5647a5b4c7
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/135420
Reviewed-by: Sigmund Cherem <sigmund@google.com>
Reviewed-by: Bob Nystrom <rnystrom@google.com>
Commit-Queue: Srujan Gaddam <srujzs@google.com>
2020-02-15 05:01:30 +00:00

44 lines
998 B
Dart

// Copyright (c) 2015, 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.
@JS()
library js_dart_to_string_test;
import 'dart:html';
import 'package:js/js.dart';
import 'package:expect/minitest.dart';
_injectJs() {
document.body.append(new ScriptElement()
..type = 'text/javascript'
..innerHtml = r"""
function jsToStringViaCoercion(a) {
return a + '';
};
""");
}
@JS()
external String jsToStringViaCoercion(obj);
class ExampleClassWithCustomToString {
var x;
ExampleClassWithCustomToString(this.x);
String toString() => "#$x#";
}
main() {
_injectJs();
group('toString', () {
test('custom dart', () {
var x = new ExampleClassWithCustomToString("fooBar");
expect(jsToStringViaCoercion(x), equals("#fooBar#"));
expect(jsToStringViaCoercion({'a': 1, 'b': 2}), equals("{a: 1, b: 2}"));
});
});
}