immich/mobile/openapi/test/ocr_config_test.dart

52 lines
1.2 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 OcrConfig
void main() {
// final instance = OcrConfig();
group('test OcrConfig', () {
// Whether the task is enabled
// bool enabled
test('to test the property `enabled`', () async {
// TODO
});
// Maximum resolution for OCR processing
// int maxResolution
test('to test the property `maxResolution`', () async {
// TODO
});
// Minimum confidence score for text detection
// double minDetectionScore
test('to test the property `minDetectionScore`', () async {
// TODO
});
// Minimum confidence score for text recognition
// double minRecognitionScore
test('to test the property `minRecognitionScore`', () async {
// TODO
});
// Name of the model to use
// String modelName
test('to test the property `modelName`', () async {
// TODO
});
});
}