This commit is contained in:
FireMasterK 2022-02-07 13:25:54 +00:00
parent a8612fdad7
commit 8097805f0e
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD
9 changed files with 484 additions and 8 deletions

35
test/subtitle_test.dart Normal file
View file

@ -0,0 +1,35 @@
import 'package:test/test.dart';
import 'package:piped_api/piped_api.dart';
// tests for Subtitle
void main() {
final instance = SubtitleBuilder();
// TODO add properties to the builder and call build()
group(Subtitle, () {
// Whether the subtitle is auto generated.
// bool autoGenerated
test('to test the property `autoGenerated`', () async {
// TODO
});
// The language code of the subtitle.
// String code
test('to test the property `code`', () async {
// TODO
});
// The mime type of the subtitle.
// String mimeType
test('to test the property `mimeType`', () async {
// TODO
});
// The URL of the subtitle.
// String url
test('to test the property `url`', () async {
// TODO
});
});
}