mirror of
https://github.com/TeamPiped/piped_dart.git
synced 2024-08-14 22:27:49 +00:00
35 lines
790 B
Dart
35 lines
790 B
Dart
import 'package:test/test.dart';
|
|
import 'package:piped_api/piped_api.dart';
|
|
|
|
// tests for PlaylistItem
|
|
void main() {
|
|
final instance = PlaylistItemBuilder();
|
|
// TODO add properties to the builder and call build()
|
|
|
|
group(PlaylistItem, () {
|
|
// The name of the playlist.
|
|
// String name
|
|
test('to test the property `name`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The thumbnail of the playlist.
|
|
// String thumbnail
|
|
test('to test the property `thumbnail`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The relative URL of the playlist.
|
|
// String url
|
|
test('to test the property `url`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The number of videos in the playlist.
|
|
// int videos
|
|
test('to test the property `videos`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|