46 lines
979 B
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 BooksApi
void main() {
final instance = BooksApi();
group('tests for BooksApi', () {
//Future<Book> booksCreate(Book book) async
test('test booksCreate', () async {
// TODO
});
//Future<MultipartFile> booksDelete(String id) async
test('test booksDelete', () async {
// TODO
});
//Future<Book> booksGet(String id) async
test('test booksGet', () async {
// TODO
});
//Future<List<Book>> booksGetAll() async
test('test booksGetAll', () async {
// TODO
});
//Future<MultipartFile> booksUpdate(String id, Book book) async
test('test booksUpdate', () async {
// TODO
});
});
}