This slides talks about test driven development and software testing in android applications, why we should test, and how we can test our android apps.
operation, you can test your Android or iOS app across a wide variety of devices and device configurations, and see the results—including logs, videos, and screenshots—in the Firebase console. 16 Firebase Test Lab
class AdditionUnitTest { private val instance = MainActivity::class.createInstance() @Test fun additionOneIsCorrect() { //Test Case 1: Two positive numbers Assert.assertEquals(12, instance.addition(3,9)) } } Sample Unit Test