blob: 311103dbc5b4d45a516a971ec194b6f580d2134a [file] [log] [blame]
/*
* Copyright (c) 2013, 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 JsonCodec()
* A JsonCodec encodes JSON objects to strings and decodes strings to JSON objects.
* @description Checks that created object implements specified elements.
* @author kaigorodov
*/
import "dart:convert";
import "../../../Utils/expect.dart";
main() {
JsonCodec res = new JsonCodec();
Expect.isTrue(res is JsonCodec);
Expect.isTrue(res.decoder is JsonDecoder);
Expect.isTrue(res.encoder is JsonEncoder);
Expect.isTrue(res.inverted is Codec);
Expect.isTrue(res.decode is Function);
Expect.isTrue(res.encode is Function);
Expect.isTrue(res.fuse is Function);
}