immich/mobile/openapi/test/sync_asset_ocr_v1_test.dart

106 lines
2.3 KiB
Dart
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//
// 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 SyncAssetOcrV1
void main() {
// final instance = SyncAssetOcrV1();
group('test SyncAssetOcrV1', () {
// Asset ID
// String assetId
test('to test the property `assetId`', () async {
// TODO
});
// Confidence score of the bounding box
// double boxScore
test('to test the property `boxScore`', () async {
// TODO
});
// OCR entry ID
// String id
test('to test the property `id`', () async {
// TODO
});
// Whether the OCR entry is visible
// bool isVisible
test('to test the property `isVisible`', () async {
// TODO
});
// Recognized text content
// String text
test('to test the property `text`', () async {
// TODO
});
// Confidence score of the recognized text
// double textScore
test('to test the property `textScore`', () async {
// TODO
});
// Top-left X coordinate (normalized 01)
// double x1
test('to test the property `x1`', () async {
// TODO
});
// Top-right X coordinate (normalized 01)
// double x2
test('to test the property `x2`', () async {
// TODO
});
// Bottom-right X coordinate (normalized 01)
// double x3
test('to test the property `x3`', () async {
// TODO
});
// Bottom-left X coordinate (normalized 01)
// double x4
test('to test the property `x4`', () async {
// TODO
});
// Top-left Y coordinate (normalized 01)
// double y1
test('to test the property `y1`', () async {
// TODO
});
// Top-right Y coordinate (normalized 01)
// double y2
test('to test the property `y2`', () async {
// TODO
});
// Bottom-right Y coordinate (normalized 01)
// double y3
test('to test the property `y3`', () async {
// TODO
});
// Bottom-left Y coordinate (normalized 01)
// double y4
test('to test the property `y4`', () async {
// TODO
});
});
}