android-junit Questions
6
Solved
As I understand, lenient silences the exceptions thrown by StrictStubbing. Based on this, lenient shouldn't be used, maybe only temporary while doing TDD, because strict stubbing exceptions would g...
Sanious asked 26/2, 2020 at 18:20
2
In my Android application, I want exclude some test cases in a package so that I used test task in build.gradle file. for example:
apply plugin: 'com.android.library'
test{
exclude '**/calltest/...
Toehold asked 8/1, 2019 at 9:24
2
I'm getting this error while trying to use FragmentScenario in Android
error: package androidx.fragment.app.testing does not exist
import androidx.fragment.app.testing.FragmentScenario;
^
This ...
Osculate asked 7/4, 2020 at 15:0
2
I'm running a espresso uiautomator test which runs well when using the green run > button on android studio. (image below)
Yet ./gradlew connectedAndroidTest is giving an error:
No Koin Context ...
Hermaphroditism asked 15/11, 2020 at 6:46
0
I'm using kotlin collections library (listOf, first, toList, etc,..) methods in our AndroidTest package to run UI tests using AndroidJunit4 runner and I'm coming across these type of errors whereve...
Rosendorosene asked 23/6, 2020 at 1:4
2
Solved
The ActivityTestRule class takes in an initialTouchMode parameter in its constructor. This is not explained in the class reference (or anywhere online) except as follows:
initialTouchMode - true i...
Cons asked 13/3, 2016 at 12:7
0
I'm working on a multi-module project, and after making the transition from the support libraries to AndroidX, ./gradlew connectedCheck fails:
FAILURE: Build failed with an exception.
* What went...
Tootsy asked 13/5, 2019 at 22:16
3
Solved
I want to write test for recreating activity. Performing rotation is optional.
I want the test to be written in up-to-date version of testing framework "blessed" by Google. I am new to writing te...
Cornell asked 27/2, 2017 at 9:51
2
I am trying to write a Robolectric test. I was following few tutorials where they seem to be using
@RunWith(RobolectricTestRunner::class)
@Config(constants = BuildConfig::class)
to setup the te...
Addiel asked 26/11, 2018 at 3:13
1
In my Android application I have several test classes. If I run following command ./gradlew connectedAndroidTest it runs all the test cases inside the android test folder and generate test report f...
Colotomy asked 13/8, 2018 at 13:10
1
Solved
I have the following test, where the test name is with space and backtick for my instrumental test
@RunWith(AndroidJUnit4::class)
class MyTestClass {
@Rule
@JvmField
var activityRule: ActivityT...
Adriaadriaens asked 27/7, 2018 at 16:34
1
Solved
I'm using the AndroidJUnitRunner in my project, but the unit tests are painfully slow to execute on a device and emulator both in Android Studio and from the command-line via gradlew.
I'm using th...
Gingili asked 6/7, 2018 at 19:3
0
I'm using the Android Test Orchestrator to run my UI tests and i need to generate a report of the results when all the tests are finished.
I need to have a callback for when the orchestrator starts...
Kalil asked 14/6, 2018 at 12:58
2
I am trying to test RecyclerView with AndroidJunit4, it is my test code:
@Rule
public ActivityTestRule<ProductListActivity> rule = new ActivityTestRule<>(ProductListActivity.class);
...
Pelvic asked 10/5, 2017 at 16:48
2
Solved
I am currently trying to unit test recyclerview addonitemclick listner, with either junit or mockito. here's my code:
private void mypicadapter(TreeMap<Integer, List<Photos>> photosMap...
Latonia asked 12/2, 2017 at 13:42
1
© 2022 - 2025 — McMap. All rights reserved.