cubetiq_dart_shared/test/cubetiq_text_formatter_test...
Sambo Chea 7ec5118598 Task: Add text formatter functions and updated for configurable from the latest
functions with future and async support and add tests and examples
2021-06-01 23:03:54 +07:00

16 lines
405 B
Dart

import 'package:cubetiq/text.dart';
import 'package:test/test.dart';
void main() {
test('text formatter function format', () {
var text1 = 'Hello, {0}!';
var result1 = TextFormatter(text1).format(['Sambo']);
var text2 = 'Hello, {name}!';
var result2 = TextFormatter(text2).decorate({'name': 'Chea'});
expect('Hello, Sambo!', result1);
expect('Hello, Chea!', result2);
});
}