KmLogging
KmLogging copied to clipboard
Test logging support (kmp, android)
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 } }