immich/mobile/openapi/test/notification_dto_test.dart

68 lines
1.5 KiB
Dart

//
// AUTO-GENERATED FILE, DO NOT MODIFY!
//
// @dart=2.18
// 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 NotificationDto
void main() {
// final instance = NotificationDto();
group('test NotificationDto', () {
// Creation date
// DateTime createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// Additional notification data
// Optional<Map<String, Object>?> data (default value: const {})
test('to test the property `data`', () async {
// TODO
});
// Notification description
// Optional<String?> description
test('to test the property `description`', () async {
// TODO
});
// Notification ID
// String id
test('to test the property `id`', () async {
// TODO
});
// NotificationLevel level
test('to test the property `level`', () async {
// TODO
});
// Date when notification was read
// Optional<DateTime?> readAt
test('to test the property `readAt`', () async {
// TODO
});
// Notification title
// String title
test('to test the property `title`', () async {
// TODO
});
// NotificationType type
test('to test the property `type`', () async {
// TODO
});
});
}