How to run a simple JUnit4 test in Android Studio 1.1?

后端 未结 4 1706
面向向阳花
面向向阳花 2020-12-14 02:12

I have an Android project that shows \"Hello World\". It was created from the \"Blank Activity\" template from Android Studio.

I then add/create a new java class in

相关标签:
4条回答
  • 2020-12-14 02:34

    Go to settings then build tools then gradle and then experimental. In experimental uncheck enable all test artifacts. Thats it game over

    0 讨论(0)
  • 2020-12-14 02:43

    Since Android Studio 1.1, there is (experimental) unit test support. A couple of quotes from that page:

    You will have to specify your testing dependencies in the build.gradle file of your android module. For example:

    dependencies {
      testCompile 'junit:junit:4.12'
      testCompile "org.mockito:mockito-core:1.9.5"
    }
    

    To use unit testing support in AS, you have to do the following steps:

    1. Update build.gradle to use the android gradle plugin version 1.1.0-rc1 or later (either manually in build.gradle file or in the UI in File > Project Structure)

    2. Add necessary testing dependencies to app/build.gradle (see above).

    3. Enable the unit testing feature in Settings > Gradle > Experimental.

    4. Sync your project.

    5. Open the "Build variants" tool window (on the left) and change the test artifact to "Unit tests".

    6. Create a directory for your testing source code, i.e. src/test/java. You can do this from the command line or using the Project view in the Project tool window. The new directory should be highlighted in green at this point. Note: names of the test source directories are determined by the gradle plugin based on a convention.

    7. Create your test. You can do this by opening a class, right-clicking its name and selecting "Go to > Test". Add some test cases.
    8. Right click your new test class or method and select "Run ...".
    9. (Optional) You can decrease the compilation time by using Gradle directly. To do this, go to the Run menu and select "Edit configurations". There, find the default JUnit template, remove the "Make" before-launch step and add a "Gradle aware make" step instead (leave the task name empty).

    It is important to know that there are two test types: androidTest and plain test.

    • androidTest is primarily for tests you run on an emulator or device, such as instrumentation tests. From the command line, you use ./gradlew connectedCheck to run these.
    • test is for tests you don't want to run on a device, such as the unit test you wrote. You run ./gradlew test to run these tests.

    As stated in the quote, you switch between androidTest and test in Android Studio by changing the test artifact.

    Naturally, it is preferred to not run tests on a device or emulator, since this speeds up the testing process a lot. With the new experimental unit test support, you gain access to stubbed Android API's without using a device. This lets you move more tests from androidTest to test.

    0 讨论(0)
  • 2020-12-14 02:45

    Nowadays Android Studio (current ver. 1.4) has full Unit test support without any workarounds. Just as suggested in the automatically generated ExampleUnitTest:

    To work on unit tests, switch the Test Artifact in the Build Variants view.

    0 讨论(0)
  • 2020-12-14 02:54

    For android studio 1.2 or greater, I include this answer since this is one of the first ranking at google and this is an excelent and VERY easy to follow tutorial on how to set unit tests with Android Studio, this is the link: https://io2015codelabs.appspot.com/codelabs/android-studio-testing#1

    After wasting 2 hours trying to run test I finally did it with the above link, hope it is as useful for you as for me.

    0 讨论(0)
提交回复
热议问题