mirror of
https://github.com/gosticks/open-project-flutter-api.git
synced 2025-10-16 11:55:34 +00:00
111 lines
2.9 KiB
Dart
111 lines
2.9 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 UserModel
|
|
void main() {
|
|
// final instance = UserModel();
|
|
|
|
group('test UserModel', () {
|
|
// Object type
|
|
test('to test the property `type`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// User's id
|
|
// Object id
|
|
test('to test the property `id`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// User's login name # Conditions **Permission**: Administrator, manage_user global permission
|
|
// Object login
|
|
test('to test the property `login`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// User's first name # Conditions **Permission**: Administrator, manage_user global permission
|
|
// Object firstName
|
|
test('to test the property `firstName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// User's last name # Conditions **Permission**: Administrator, manage_user global permission
|
|
// Object lastName
|
|
test('to test the property `lastName`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// User's full name, formatting depends on instance settings
|
|
// Object name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// User's email address # Conditions E-Mail address not hidden, **Permission**: Administrator, manage_user global permission
|
|
// Object email
|
|
test('to test the property `email`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Flag indicating whether or not the user is an admin # Conditions **Permission**: Administrator
|
|
// Object admin
|
|
test('to test the property `admin`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// URL to user's avatar
|
|
// Object avatar
|
|
test('to test the property `avatar`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The current activation status of the user (see below)
|
|
// Object status
|
|
test('to test the property `status`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// User's language | ISO 639-1 format # Conditions **Permission**: Administrator, manage_user global permission
|
|
// Object language
|
|
test('to test the property `language`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// User's identity_url for OmniAuth authentication # Conditions **Permission**: Administrator
|
|
// Object identityUrl
|
|
test('to test the property `identityUrl`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Time of creation
|
|
// Object createdAt
|
|
test('to test the property `createdAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Time of the most recent change to the user
|
|
// Object updatedAt
|
|
test('to test the property `updatedAt`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// UserModelLinks links
|
|
test('to test the property `links`', () async {
|
|
// TODO
|
|
});
|
|
|
|
|
|
});
|
|
|
|
}
|