piped_dart/test/exception_error_test.dart

24 lines
544 B
Dart

import 'package:test/test.dart';
import 'package:piped_api/piped_api.dart';
// tests for ExceptionError
void main() {
final instance = ExceptionErrorBuilder();
// TODO add properties to the builder and call build()
group(ExceptionError, () {
// The stacktrace provided by the server.
// String error
test('to test the property `error`', () async {
// TODO
});
// The error message from the stacktrace.
// String message
test('to test the property `message`', () async {
// TODO
});
});
}