Waqas Youniswaqasyounis.hashnode.dev·Oct 14, 2024runTest vs runBlocking - SimplifiedAs the name runBlocking suggests that it runs suspending code in blocking manner, which means if there is a delay inside the unlocking block, it will also block the thread. fun main(){ runBlocking{ delay(2000) println("Inside runBlocking")...AndroidAdd a thoughtful commentNo comments yetBe the first to start the conversation.