Final commit.
This commit is contained in:
25
packages/holzleitner_api/test/admin_api_test.dart
Normal file
25
packages/holzleitner_api/test/admin_api_test.dart
Normal file
@ -0,0 +1,25 @@
|
||||
import 'package:test/test.dart';
|
||||
import 'package:holzleitner_api/holzleitner_api.dart';
|
||||
|
||||
|
||||
/// tests for AdminApi
|
||||
void main() {
|
||||
final instance = HolzleitnerApi().getAdminApi();
|
||||
|
||||
group(AdminApi, () {
|
||||
// Stößt den ERP-Import für ein Datum an und liefert die Zusammenfassung.
|
||||
//
|
||||
//Future<ImportSummary> importErp({ String date }) async
|
||||
test('test importErp', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
// Stößt das ERP-Rückschreiben eines bereits lokal abgeschlossenen Lieferabschlusses erneut an (idempotenter Retry, falls der automatische Push beim Abschluss fehlschlug).
|
||||
//
|
||||
//Future pushCompletion(String deliveryId) async
|
||||
test('test pushCompletion', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user