Files
fin-tracker/app/packages/api_client/test/event_page_test.dart
T
2026-09-18 14:20:50 +03:00

32 lines
636 B
Dart

import 'package:test/test.dart';
import 'package:fintracker_api/fintracker_api.dart';
// tests for EventPage
void main() {
final EventPage? instance = /* EventPage(...) */ null;
// TODO add properties to the entity
group(EventPage, () {
// List<EventOut> items
test('to test the property `items`', () async {
// TODO
});
// int page
test('to test the property `page`', () async {
// TODO
});
// int pageSize
test('to test the property `pageSize`', () async {
// TODO
});
// int total
test('to test the property `total`', () async {
// TODO
});
});
}