Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
193 views
in Technique[技术] by (71.8m points)

android - Unit Test orEmpty() method Kotlin

I am writing Junit Test case but in Jacoco code coverage I am not able o cover this line uri.host.orEmpty() How to write unit test case for uri.host.orEmpty() I wrote this case but it didn't work

var url = "https://abc.co.jp/app/#/dashboard"
        val uri = URLUtil.getHostName(url)
        uri shouldBe "abc.co.jp"

        url = "https://"
        URLUtil.getHostName(url) shouldBe ""

enter image description here

question from:https://stackoverflow.com/questions/66058235/unit-test-orempty-method-kotlin

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Just do host?:"" instead of calling a function, code coverage can be ignored on library functions, but if you want to cover most of it do below

fun getHostName(url: String): String{
    val uri = Uri.parse(url)
    return uri.host?:""
}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...