immich/mobile/openapi/test/auth_status_response_dto_test.dart

52 lines
1.1 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 AuthStatusResponseDto
void main() {
// final instance = AuthStatusResponseDto();
group('test AuthStatusResponseDto', () {
// Session expiration date
// Optional<String?> expiresAt
test('to test the property `expiresAt`', () async {
// TODO
});
// Is elevated session
// bool isElevated
test('to test the property `isElevated`', () async {
// TODO
});
// Has password set
// bool password
test('to test the property `password`', () async {
// TODO
});
// Has PIN code set
// bool pinCode
test('to test the property `pinCode`', () async {
// TODO
});
// PIN expiration date
// Optional<String?> pinExpiresAt
test('to test the property `pinExpiresAt`', () async {
// TODO
});
});
}