1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-03-10 09:18:52 +01:00
nc-photos/np_math/test/math_util_test.dart

16 lines
315 B
Dart
Raw Normal View History

2022-08-20 13:10:33 +02:00
import 'dart:math' as math;
2023-08-25 17:29:27 +02:00
import 'package:np_math/src/math_util.dart';
2022-08-20 13:10:33 +02:00
import 'package:test/test.dart';
void main() {
group("math_util", () {
test("degToRad", () {
2023-08-25 17:29:27 +02:00
expect(degToRad(90), closeTo(1.570796, 1e-6));
2022-08-20 13:10:33 +02:00
});
test("radToDeg", () {
2023-08-25 17:29:27 +02:00
expect(radToDeg(math.pi), 180);
2022-08-20 13:10:33 +02:00
});
});
}