mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 01:31:19 +00:00
42 lines
1.1 KiB
Dart
42 lines
1.1 KiB
Dart
//
|
|
// AUTO-GENERATED FILE, DO NOT MODIFY!
|
|
//
|
|
// @dart=2.0
|
|
|
|
// ignore_for_file: unused_element, unused_import
|
|
// ignore_for_file: always_put_required_named_parameters_first
|
|
// ignore_for_file: lines_longer_than_80_chars
|
|
|
|
import 'package:mycoreapi/api.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
|
|
/// tests for IOTApi
|
|
void main() {
|
|
final instance = IOTApi();
|
|
|
|
group('tests for IOTApi', () {
|
|
// Retrieve all SmartPrinterMessage
|
|
//
|
|
//Future<List<SmartPrinterMessage>> iOTGetSmartPrinterMessages(String idDevice, { int id }) async
|
|
test('test iOTGetSmartPrinterMessages', () async {
|
|
// TODO
|
|
});
|
|
|
|
// It's the method to post data from mqtt broker to Database (Thanks Rpi!)
|
|
//
|
|
//Future<MultipartFile> iOTPostToDBPrinter(int idDevice, List<SmartPrinterMessage> smartPrinterMessage) async
|
|
test('test iOTPostToDBPrinter', () async {
|
|
// TODO
|
|
});
|
|
|
|
// It's the method to post data from mqtt broker to Database (Thanks Rpi!)
|
|
//
|
|
//Future<MultipartFile> iOTPostToDBSmartGarden(int idDevice, List<SmartGardenMessage> smartGardenMessage) async
|
|
test('test iOTPostToDBSmartGarden', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|