mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
13 lines
420 B
Dart
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");
|
|
});
|
|
});
|
|
}
|