blob: 4cf3420dd3d23d3bb1d0e847d49840b544b24e27 [file] [log] [blame]
// 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.
/// @assertion const JsonEncoder([Object toEncodable(Object nonSerializable)])
/// Creates a JSON encoder.
/// ...
/// If toEncodable is omitted, it defaults to calling .toJson() on the object.
/// @description Checks that this constructor, called without parameters,
/// creates object with default toEncodable
/// @author sgrekhov@unipro.ru
import "dart:convert";
import "../../../Utils/expect.dart";
class A {
Object toJson() => 42;
}
class C {
String toJson() => "C: this is JSON";
}
check(JsonEncoder encoder, var object, var expected) {
var encoded = encoder.convert(object);
Expect.equals(expected.toString(), encoded.toString());
}
main() {
JsonEncoder encoder = new JsonEncoder();
check(encoder, 1, "1");
check(encoder, 3.14, "3.14");
check(encoder, null, "null");
check(encoder, "str", '"str"');
check(encoder, true, 'true');
check(encoder, false, 'false');
check(encoder, [1, 2, 3], "[1,2,3]");
check(encoder, {"a": "b"}, '{"a":"b"}');
check(encoder, new A(), new A().toJson());
check(encoder, new C(), '"' + new C().toJson() + '"');
}