tests: add chat model tests(cv: 100)

This commit is contained in:
Udhay-Adithya
2025-09-25 13:37:53 +05:30
parent f2ce403006
commit 066aa0fcf4
10 changed files with 504 additions and 14 deletions

View File

@@ -18,18 +18,4 @@ class ChatResponse {
messageType: messageType ?? this.messageType,
);
}
@override
String toString() =>
'ChatResponse(content: $content, messageType: $messageType)';
@override
bool operator ==(covariant ChatResponse other) {
if (identical(this, other)) return true;
return other.content == content && other.messageType == messageType;
}
@override
int get hashCode => content.hashCode ^ messageType.hashCode;
}