immich/mobile/openapi/test/email_notifications_update_test.dart

40 lines
1,010 B
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 EmailNotificationsUpdate
void main() {
// final instance = EmailNotificationsUpdate();
group('test EmailNotificationsUpdate', () {
// Whether to receive email notifications for album invites
// Optional<bool?> albumInvite
test('to test the property `albumInvite`', () async {
// TODO
});
// Whether to receive email notifications for album updates
// Optional<bool?> albumUpdate
test('to test the property `albumUpdate`', () async {
// TODO
});
// Whether email notifications are enabled
// Optional<bool?> enabled
test('to test the property `enabled`', () async {
// TODO
});
});
}