import 'package:test/test.dart'; import 'package:piped_api/piped_api.dart'; // tests for SearchPage void main() { final instance = SearchPageBuilder(); // TODO add properties to the builder and call build() group(SearchPage, () { // Whether the search query was corrected. // bool corrected test('to test the property `corrected`', () async { // TODO }); // BuiltList items test('to test the property `items`', () async { // TODO }); // The parameter used to get the next page of this page. // String nextpage test('to test the property `nextpage`', () async { // TODO }); // The suggested search query. // String suggestion test('to test the property `suggestion`', () async { // TODO }); }); }