aves_mio/test/fake/android_app_service.dart
Fabio Micheluz 2c988f959b
Some checks are pending
Quality check / Flutter analysis (push) Waiting to run
Quality check / CodeQL analysis (java-kotlin) (push) Waiting to run
first commit
2026-02-19 13:25:23 +01:00

9 lines
308 B
Dart

import 'package:aves/model/app_inventory.dart';
import 'package:aves/services/app_service.dart';
import 'package:flutter/foundation.dart';
import 'package:test/fake.dart';
class FakeAppService extends Fake implements AppService {
@override
Future<Set<Package>> getPackages() => SynchronousFuture({});
}