1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-10 09:18:52 +01:00
nc-photos/app/test/double_extension_test.dart
2022-04-06 02:37:58 +08:00

13 lines
416 B
Dart

import 'package:test/test.dart';
import 'package:nc_photos/double_extension.dart';
void main() {
group("DoubleExtension", () {
test("toStringAsFixedTruncated", () {
expect(1.23456.toStringAsFixedTruncated(4), "1.2346");
expect(1.23001.toStringAsFixedTruncated(4), "1.23");
expect(1.23.toStringAsFixedTruncated(4), "1.23");
expect(1.0.toStringAsFixedTruncated(4), "1");
});
});
}