tuuli_api/test/create_asset_response_test.dart
2023-04-24 10:46:16 +07:00

21 lines
473 B
Dart

import 'package:test/test.dart';
import 'package:tuuli_api/tuuli_api.dart';
// tests for CreateAssetResponse
void main() {
final instance = CreateAssetResponseBuilder();
// TODO add properties to the builder and call build()
group(CreateAssetResponse, () {
// bool ok (default value: true)
test('to test the property `ok`', () async {
// TODO
});
// String fid
test('to test the property `fid`', () async {
// TODO
});
});
}