import 'package:test/test.dart'; import 'package:piped_api/piped_api.dart'; /// tests for UnauthenticatedApi void main() { final instance = PipedApi().getUnauthenticatedApi(); group(UnauthenticatedApi, () { // Gets Channel Information // // Gets all available Channel information about a channel. // //Future channelInfoId(String channelId) async test('test channelInfoId', () async { // TODO }); // Gets Channel Information // // Gets all available Channel information about a channel. // //Future channelInfoName(String name) async test('test channelInfoName', () async { // TODO }); // Gets Channel Information // // Gets all available Channel information about a channel. // //Future channelInfoUsername(String username) async test('test channelInfoUsername', () async { // TODO }); // Gets Video Information // // Gets all available Stream information about a video. // //Future streamInfo(String videoId) async test('test streamInfo', () async { // TODO }); // Gets all Trending Videos // // Gets all Trending Videos in the requested country. // //Future> trending(Regions region) async test('test trending', () async { // TODO }); }); }