Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
adi-itgg committed Oct 4, 2022
1 parent acd4d13 commit 51f175f
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class ApiRepositoryTest {
assertThat(it.data).isInstanceOf(SearchData::class.java)
assertThat((it.data as SearchData).shortUsers).isNotEmpty()
}
else -> {}
}
}

Expand All @@ -57,6 +58,7 @@ class ApiRepositoryTest {
assertThat(it.data).isInstanceOf(User::class.java)
assertThat((it.data as User).id).isGreaterThan(0)
}
else -> {}
}
}

Expand All @@ -73,6 +75,7 @@ class ApiRepositoryTest {
assertThat(it.data).isInstanceOf(List::class.java)
assertThat((it.data as List<*>).filterIsInstance(ShortUser::class.java)).isNotEmpty()
}
else -> {}
}
}

Expand Down

0 comments on commit 51f175f

Please sign in to comment.