mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
a1ce17d675
* removed unused analytics event & added `logCrash` * added analytics to `RemoteConfigService` * run app with `runZonedGuarded` * added crash logging to `CameraContainerBloc` * log product id for IAP errors * typo * log crashes in `RemoteConfigService` * ignore silent `FlutterError` * fixed `evFromImage` test * fixed `showBuyProDialog` test * log errors in console * depend on iap 0.7.2 * Made errors non-fatal by default * improved EXIF errors reporting * fixed tests
24 lines
589 B
Dart
24 lines
589 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), throwsArgumentError);
|
|
},
|
|
);
|
|
});
|
|
}
|