mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-21 23:10:40 +00:00
f3b08868be
- Fixed test coverage calculation - Removed `mockito` from the application mock - Implemented platform channel mocks to mimic incident light metering - Covered providers with unit tests - Covered metering screen pickers with widget tests - Laid foundation for integration tests
19 lines
565 B
Dart
19 lines
565 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:lightmeter/application.dart';
|
|
import 'package:lightmeter/application_wrapper.dart';
|
|
import 'package:lightmeter/environment.dart';
|
|
import 'package:lightmeter/firebase.dart';
|
|
import 'package:m3_lightmeter_iap/m3_lightmeter_iap.dart';
|
|
|
|
Future<void> main() async {
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
await initializeFirebase(handleErrors: true);
|
|
runApp(
|
|
const IAPProductsProvider(
|
|
child: ApplicationWrapper(
|
|
Environment.prod(),
|
|
child: Application(),
|
|
),
|
|
),
|
|
);
|
|
}
|