open-project-flutter-api/test/time_entry_model_test.dart
2023-11-05 19:54:17 +01:00

69 lines
1.5 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 TimeEntryModel
void main() {
// final instance = TimeEntryModel();
group('test TimeEntryModel', () {
// The id of the time entry
// Object id
test('to test the property `id`', () async {
// TODO
});
// TimeEntryModelComment comment
test('to test the property `comment`', () async {
// TODO
});
// The date the expenditure is booked for
// Object spentOn
test('to test the property `spentOn`', () async {
// TODO
});
// The time quantifying the expenditure
// Object hours
test('to test the property `hours`', () async {
// TODO
});
// Whether the time entry is actively tracking time
// Object ongoing
test('to test the property `ongoing`', () async {
// TODO
});
// The time the time entry was created
// Object createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// The time the time entry was last updated
// Object updatedAt
test('to test the property `updatedAt`', () async {
// TODO
});
// TimeEntryModelLinks links
test('to test the property `links`', () async {
// TODO
});
});
}