26 lines
725 B
Dart
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
|
|
});
|
|
|
|
});
|
|
}
|