mirror of
https://github.com/TeamPiped/piped_dart.git
synced 2024-08-14 22:27:49 +00:00
23 lines
544 B
Dart
23 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
|
|
});
|
|
|
|
});
|
|
}
|