mirror of
https://github.com/TeamPiped/piped_dart.git
synced 2024-08-14 22:27:49 +00:00
21 lines
491 B
Dart
21 lines
491 B
Dart
import 'package:test/test.dart';
|
|
import 'package:piped_api/piped_api.dart';
|
|
|
|
// tests for VideoInfo
|
|
void main() {
|
|
final instance = VideoInfoBuilder();
|
|
// TODO add properties to the builder and call build()
|
|
|
|
group(VideoInfo, () {
|
|
// BuiltList<Stream> audioStreams
|
|
test('to test the property `audioStreams`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// BuiltList<StreamItem> relatedStreams
|
|
test('to test the property `relatedStreams`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|