Files
Dennis Nemec a9bf8ecdd1 Final commit.
2026-06-01 17:12:28 +02:00

26 lines
725 B
Dart

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
});
});
}