mirror of
https://github.com/TeamPiped/piped_dart.git
synced 2024-08-14 22:27:49 +00:00
28 lines
683 B
Dart
28 lines
683 B
Dart
import 'package:test/test.dart';
|
|
import 'package:piped_api/piped_api.dart';
|
|
|
|
// tests for CommentsPage
|
|
void main() {
|
|
final instance = CommentsPageBuilder();
|
|
// TODO add properties to the builder and call build()
|
|
|
|
group(CommentsPage, () {
|
|
// BuiltList<Comment> comments
|
|
test('to test the property `comments`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// The parameter used to get the next page of comments.
|
|
// String nextpage
|
|
test('to test the property `nextpage`', () async {
|
|
// TODO
|
|
});
|
|
|
|
// Whether or not comments are disabled on the video.
|
|
// bool disabled
|
|
test('to test the property `disabled`', () async {
|
|
// TODO
|
|
});
|
|
|
|
});
|
|
}
|