import 'package:test/test.dart'; import 'package:fintracker_api/fintracker_api.dart'; // tests for DataQualityRow void main() { final DataQualityRow? instance = /* DataQualityRow(...) */ null; // TODO add properties to the entity group(DataQualityRow, () { // String checkName test('to test the property `checkName`', () async { // TODO }); // DateTime computedAt test('to test the property `computedAt`', () async { // TODO }); // int count test('to test the property `count`', () async { // TODO }); // String detail test('to test the property `detail`', () async { // TODO }); // int id test('to test the property `id`', () async { // TODO }); // Map ref test('to test the property `ref`', () async { // TODO }); // String severity test('to test the property `severity`', () async { // TODO }); }); }