mirror of
https://github.com/gosticks/open-project-flutter-api.git
synced 2025-10-16 11:55:34 +00:00
73 lines
1.6 KiB
Dart
73 lines
1.6 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 NotificationModel
|
|
void main() {
|
|
// final instance = NotificationModel();
|
|
|
|
group('test NotificationModel', () {
|
|
// String type
|
|
test('to test the property `type`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Notification id
|
|
// int id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The reason for the notification
|
|
// String reason
|
|
test('to test the property `reason`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Whether the notification is marked as read
|
|
// bool readIAN
|
|
test('to test the property `readIAN`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// List<NotificationModelDetailsInner> details (default value: const [])
|
|
test('to test the property `details`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The time the notification was created at
|
|
// DateTime createdAt
|
|
test('to test the property `createdAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The time the notification was last updated
|
|
// DateTime updatedAt
|
|
test('to test the property `updatedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// NotificationModelEmbedded embedded
|
|
test('to test the property `embedded`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// NotificationModelLinks links
|
|
test('to test the property `links`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|