nc-photos/np_string/test/double_extension_test.dart
2023-08-26 01:34:07 +08:00

13 lines
420 B
Dart

import 'package:np_string/src/double_extension.dart';
import 'package:test/test.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");
});
});
}