LighthouseGames / KmLogging

Kotlin multiplatform logging. High performance, composable and simple to use.
Apache License 2.0
84 stars 13 forks source link

Test logging support (kmp, android) #25

Open Kronos0041 opened 5 months ago

Kronos0041 commented 5 months ago

When write test log in test function in commontTest section, android studio show error for test Method d in android.util.Log not mocked. Example: @Test fun testLevelStates() = runBlocking { KmLogging.debug("test", "kmp test") } Just need add unitTests.isReturnDefaultValues support in build.gradle (android) section android { testOptions { unitTests.isReturnDefaultValues = true } }