Hi everyone, I want to learn the Testing in androi...
# android
a
Hi everyone, I want to learn the Testing in android, but I don't know anything about it, so I want you to suggest something to start studying the Testing ??
p
p
What kind of testing are you gonna learn? Check this if you want to learn about types of tests: https://medium.com/@lawrey/unit-tests-ui-tests-integration-tests-end-to-end-tests-c0d98e0218a6 https://developer.android.com/training/testing/fundamentals https://proandroiddev.com/writing-integration-tests-in-android-b0436978ed7b After that, you probably want to start from unit testing, because it's simple to do. And just google how to do that. I'd recommend to check JUnit5 as a runner. As mockers: Mockk for Kotlin and Mockito for Java.
a
thank you very much