blob: 1fb841f3127ba1d0ebb7f430c5d0262954c23391 [file] [log] [blame]
// Copyright (c) 2024, 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 'dart:convert';
import 'package:convert/convert.dart';
import 'package:test/test.dart';
void main() {
group('IdentityCodec', () {
test('encode', () {
const codec = IdentityCodec<String>();
expect(codec.encode('hello-world'), equals('hello-world'));
});
test('decode', () {
const codec = IdentityCodec<String>();
expect(codec.decode('hello-world'), equals('hello-world'));
});
test('fuse', () {
const stringCodec = IdentityCodec<String>();
final utf8Strings = stringCodec.fuse(utf8);
expect(utf8Strings, equals(utf8));
});
});
}