And then an use case ``` class GetCryptoListUseCa...
# mockk
j
And then an use case
Copy code
class GetCryptoListUseCase @Inject constructor(var cryptoListRepository: CryptoListRepository) {
    fun execute(): Single<List<CryptoViewModel>> {
        return cryptoListRepository.getResultData().map {
            cryptoCurrencyMapper(
                it
            )
        }
    }
}