open-project-flutter-api/test/revision_model_test.dart
2023-11-05 19:54:17 +01:00

63 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 RevisionModel
void main() {
// final instance = RevisionModel();
group('test RevisionModel', () {
// Revision's id, assigned by OpenProject
// Object id
test('to test the property `id`', () async {
// TODO
});
// The raw SCM identifier of the revision (e.g. full SHA hash)
// Object identifier
test('to test the property `identifier`', () async {
// TODO
});
// The SCM identifier of the revision, formatted (e.g. shortened unambiguous SHA hash). May be identical to identifier in many cases
// Object formattedIdentifier
test('to test the property `formattedIdentifier`', () async {
// TODO
});
// The name of the author that committed this revision. Note that this name is retrieved from the repository and does not identify a user in OpenProject.
// Object authorName
test('to test the property `authorName`', () async {
// TODO
});
// RevisionModelMessage message
test('to test the property `message`', () async {
// TODO
});
// The time this revision was committed to the repository
// Object createdAt
test('to test the property `createdAt`', () async {
// TODO
});
// RevisionModelLinks links
test('to test the property `links`', () async {
// TODO
});
});
}