piped_dart/test/playlist_item_test.dart
2022-07-07 18:34:25 +01:00

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
});
});
}