21 lines
473 B
Dart
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
|
|
});
|
|
|
|
});
|
|
}
|