Task: Add text formatter functions and updated for configurable from the latest

functions with future and async support and add tests and examples
This commit is contained in:
2021-06-01 23:03:54 +07:00
parent 65e6aac985
commit 7ec5118598
12 changed files with 202 additions and 5 deletions

View File

@@ -0,0 +1,15 @@
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);
});
}