mirror of
https://github.com/gosticks/open-project-flutter-api.git
synced 2025-10-16 11:55:34 +00:00
116 lines
2.7 KiB
Dart
116 lines
2.7 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 QueryModel
|
|
void main() {
|
|
// final instance = QueryModel();
|
|
|
|
group('test QueryModel', () {
|
|
// Query id
|
|
// int id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Query name
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<QueryFilterInstanceSchemaModel> filters (default value: const [])
|
|
test('to test the property `filters`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Should sums (of supported properties) be shown?
|
|
// bool sums
|
|
test('to test the property `sums`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Should the timeline mode be shown?
|
|
// bool timelineVisible
|
|
test('to test the property `timelineVisible`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<String> timelineLabels (default value: const [])
|
|
test('to test the property `timelineLabels`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Which zoom level should the timeline be rendered in?
|
|
// String timelineZoomLevel
|
|
test('to test the property `timelineZoomLevel`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Timestamps to filter by when showing changed attributes on work packages.
|
|
// Object timestamps
|
|
test('to test the property `timestamps`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Which highlighting mode should the table have?
|
|
// Object highlightingMode
|
|
test('to test the property `highlightingMode`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Should the hierarchy mode be enabled?
|
|
// Object showHierarchies
|
|
test('to test the property `showHierarchies`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Should the query be hidden from the query list?
|
|
// Object hidden
|
|
test('to test the property `hidden`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Can users besides the owner see the query?
|
|
// Object public
|
|
test('to test the property `public`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Should the query be highlighted to the user?
|
|
// Object starred
|
|
test('to test the property `starred`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Time of creation
|
|
// Object createdAt
|
|
test('to test the property `createdAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Time of the most recent change to the query
|
|
// Object updatedAt
|
|
test('to test the property `updatedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// QueryModelLinks links
|
|
test('to test the property `links`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|