mirror of
https://bitbucket.org/FransoletThomas/tablet-app.git
synced 2025-12-06 16:41:19 +00:00
47 lines
1.1 KiB
Dart
47 lines
1.1 KiB
Dart
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.12
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
// ignore_for_file: constant_identifier_names
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
import 'package:manager_api/api.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
/// tests for InstanceApi
|
|
void main() {
|
|
// final instance = InstanceApi();
|
|
|
|
group('tests for InstanceApi', () {
|
|
//Future<InstanceDTO> instanceCreateInstance(Instance instance) async
|
|
test('test instanceCreateInstance', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<String> instanceDeleteInstance(String id) async
|
|
test('test instanceDeleteInstance', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<List<Instance>> instanceGet() async
|
|
test('test instanceGet', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<InstanceDTO> instanceGetDetail(String id) async
|
|
test('test instanceGetDetail', () async {
|
|
// TODO
|
|
});
|
|
|
|
//Future<InstanceDTO> instanceUpdateinstance(Instance instance) async
|
|
test('test instanceUpdateinstance', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|