import 'package:test/test.dart'; import 'package:piped_api/piped_api.dart'; // tests for ChannelItem void main() { final instance = ChannelItemBuilder(); // TODO add properties to the builder and call build() group(ChannelItem, () { // The description of the channel. // String description test('to test the property `description`', () async { // TODO }); // The name of the channel. // String name test('to test the property `name`', () async { // TODO }); // The number of subscribers the channel has. // int subscribers test('to test the property `subscribers`', () async { // TODO }); // The thumbnail of the channel. // String thumbnail test('to test the property `thumbnail`', () async { // TODO }); // The relative URL of the channel. // String url test('to test the property `url`', () async { // TODO }); // Whether the channel is verified. // bool verified test('to test the property `verified`', () async { // TODO }); // The number of videos the channel has. // int videos test('to test the property `videos`', () async { // TODO }); }); }