import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; // tests for TokenPair void main() { final TokenPair? instance = /* TokenPair(...) */ null; // TODO add properties to the entity group(TokenPair, () { // String accessToken test('to test the property `accessToken`', () async { // TODO }); // int expiresIn test('to test the property `expiresIn`', () async { // TODO }); // String refreshToken test('to test the property `refreshToken`', () async { // TODO }); // String tokenType (default value: 'bearer') test('to test the property `tokenType`', () async { // TODO }); }); }