I'm going to post a summary of the basics of Android unit testing. There are two types of unit tests in Android: instrumentation test (androidTest) and local unit test (test). To put it simply, androidTest is a test that has dependencies on the Android framework. tests are tests that can be done regardless of the Android framework. For example, writing algorithm test code in general IntelliJ. Al..