import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; // tests for LoginRequest void main() { final LoginRequest? instance = /* LoginRequest(...) */ null; // TODO add properties to the entity group(LoginRequest, () { // String email test('to test the property `email`', () async { // TODO }); // String password test('to test the property `password`', () async { // TODO }); }); }