Final commit.
This commit is contained in:
18
packages/holzleitner_api/test/attachments_api_test.dart
Normal file
18
packages/holzleitner_api/test/attachments_api_test.dart
Normal file
@ -0,0 +1,18 @@
|
||||
import 'package:test/test.dart';
|
||||
import 'package:holzleitner_api/holzleitner_api.dart';
|
||||
|
||||
|
||||
/// tests for AttachmentsApi
|
||||
void main() {
|
||||
final instance = HolzleitnerApi().getAttachmentsApi();
|
||||
|
||||
group(AttachmentsApi, () {
|
||||
// Liefert ein gerendertes Vorschaubild des Attachments (Bytes), geladen aus DOCUframe. Auflösung/Format über Query-Parameter steuerbar (`?w=&h=&q=&ext=&page=`).
|
||||
//
|
||||
//Future getAttachment(String id, { int w, int h, int q, String ext, String page }) async
|
||||
test('test getAttachment', () async {
|
||||
// TODO
|
||||
});
|
||||
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user