mirror of
https://github.com/gosticks/open-project-flutter-api.git
synced 2025-10-16 11:55:34 +00:00
87 lines
2.2 KiB
Dart
87 lines
2.2 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:openapi/api.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
// tests for StorageFileModel
|
|
void main() {
|
|
// final instance = StorageFileModel();
|
|
|
|
group('test StorageFileModel', () {
|
|
// Linked file's id on the origin
|
|
// String id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Linked file's name on the origin
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// MIME type of the linked file. To link a folder entity, the custom MIME type `application/x-op-directory` MUST be provided. Otherwise it defaults back to an unknown MIME type.
|
|
// String mimeType
|
|
test('to test the property `mimeType`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// file size on origin in bytes
|
|
// int size
|
|
test('to test the property `size`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Timestamp of the creation datetime of the file on the origin
|
|
// DateTime createdAt
|
|
test('to test the property `createdAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Timestamp of the datetime of the last modification of the file on the origin
|
|
// DateTime lastModifiedAt
|
|
test('to test the property `lastModifiedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Display name of the author that created the file on the origin
|
|
// String createdByName
|
|
test('to test the property `createdByName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Display name of the author that modified the file on the origin last
|
|
// String lastModifiedByName
|
|
test('to test the property `lastModifiedByName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Object type
|
|
test('to test the property `type`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Location identification for file in storage
|
|
// Object location
|
|
test('to test the property `location`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// StorageFileModelAllOfLinks links
|
|
test('to test the property `links`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|