And then I have a repository that does this ``` cl...
# mockk
j
And then I have a repository that does this
Copy code
class CryptoListRepositoryImpl(var cryptoCurrencyService: CryptoCurrencyService) : CryptoListRepository {
    override fun getResultData(): Single<CryptoResponse> {
        return cryptoCurrencyService.getCryptoCurrency()
    }
}
do I have to unit test this
getResultData()
?