mirror of
https://github.com/foss42/apidash.git
synced 2025-12-02 02:39:19 +08:00
12 lines
310 B
Dart
12 lines
310 B
Dart
import 'package:apidash/dashbot/core/error/chat_failure.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
group('ChatFailure basics', () {
|
|
test('toString format', () {
|
|
const f = ChatFailure('network down', code: '503');
|
|
expect(f.toString(), 'ChatFailure: network down');
|
|
});
|
|
});
|
|
}
|