mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
24 lines
586 B
Dart
24 lines
586 B
Dart
import 'dart:io';
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:lightmeter/utils/ev_from_bytes.dart';
|
|
|
|
void main() {
|
|
group('evFromImage', () {
|
|
test(
|
|
'camera_stub_image.jpg',
|
|
() {
|
|
final bytes = File('assets/camera_stub_image.jpg').readAsBytesSync();
|
|
expectLater(evFromImage(bytes), completion(8.25230310752341));
|
|
},
|
|
);
|
|
|
|
test(
|
|
'no EXIF',
|
|
() {
|
|
final bytes = File('assets/launcher_icon_dev_512.png').readAsBytesSync();
|
|
expectLater(evFromImage(bytes), completion(null));
|
|
},
|
|
);
|
|
});
|
|
}
|