15 lines
544 B
Dart
15 lines
544 B
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:siro_maps/core/constants/api_constants.dart';
|
|
import 'package:siro_maps/core/env/env.dart';
|
|
|
|
void main() {
|
|
group('Env & Obfuscated Secrets Verification', () {
|
|
test('MapSaaS and Google API keys in Env default to empty (dynamic provisioning via Device Fingerprint)', () {
|
|
expect(Env.mapSaasApiKey, isEmpty);
|
|
expect(ApiConstants.mapSaasKey, isEmpty);
|
|
expect(Env.googleMapApiKey, isEmpty);
|
|
expect(ApiConstants.googleMapApiKey, isEmpty);
|
|
});
|
|
});
|
|
}
|