mirror of
https://github.com/TeamPiped/piped_dart.git
synced 2024-08-14 22:27:49 +00:00
Update
This commit is contained in:
parent
a8612fdad7
commit
8097805f0e
9 changed files with 484 additions and 8 deletions
35
test/subtitle_test.dart
Normal file
35
test/subtitle_test.dart
Normal 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
|
||||
});
|
||||
|
||||
});
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue