Testing ResponseModel

This commit is contained in:
Ashita Prasad
2023-04-24 07:11:11 +05:30
parent d8dd262804
commit 3a1eeeed95
2 changed files with 112 additions and 0 deletions

View File

@@ -13,4 +13,8 @@ void main() {
test('Testing copyWith()', () {
expect(kvRow1.copyWith(k: "winter", v: "26"), kvRow2Expected);
});
test('Testing hashcode', () {
expect(kvRow1.hashCode, greaterThan(0));
});
}