Robolectric: java.lang.RuntimeException: java.lang.ClassNotFoundException:...
I ran the migration as listed here
After running the tests, I get the error java.lang.RuntimeException: java.lang.ClassNotFoundException: org.robolectric.android.internal.ParallelUniverse
with an internal stack trace.
Did anyone encounter this and know how to fix this?
edit:
Added Gradle dependencies:
testImplementation ("org.robolectric:robolectric:4.1")
testImplementation "org.robolectric:shadows-httpclient:4.1"
testImplementation "org.robolectric:shadows-multidex:4.1"

add a comment |
I ran the migration as listed here
After running the tests, I get the error java.lang.RuntimeException: java.lang.ClassNotFoundException: org.robolectric.android.internal.ParallelUniverse
with an internal stack trace.
Did anyone encounter this and know how to fix this?
edit:
Added Gradle dependencies:
testImplementation ("org.robolectric:robolectric:4.1")
testImplementation "org.robolectric:shadows-httpclient:4.1"
testImplementation "org.robolectric:shadows-multidex:4.1"

its clearly says tha ParallelUniverse Class is not found. assure that you have imported that to your project
– Amas
Jan 1 at 8:48
It's an internal crash, and I think I have imported the relevant dependencies. I'll post them up as update
– dor
Jan 1 at 8:52
add a comment |
I ran the migration as listed here
After running the tests, I get the error java.lang.RuntimeException: java.lang.ClassNotFoundException: org.robolectric.android.internal.ParallelUniverse
with an internal stack trace.
Did anyone encounter this and know how to fix this?
edit:
Added Gradle dependencies:
testImplementation ("org.robolectric:robolectric:4.1")
testImplementation "org.robolectric:shadows-httpclient:4.1"
testImplementation "org.robolectric:shadows-multidex:4.1"

I ran the migration as listed here
After running the tests, I get the error java.lang.RuntimeException: java.lang.ClassNotFoundException: org.robolectric.android.internal.ParallelUniverse
with an internal stack trace.
Did anyone encounter this and know how to fix this?
edit:
Added Gradle dependencies:
testImplementation ("org.robolectric:robolectric:4.1")
testImplementation "org.robolectric:shadows-httpclient:4.1"
testImplementation "org.robolectric:shadows-multidex:4.1"


edited Jan 1 at 8:54
dor
asked Jan 1 at 8:42
dordor
5510
5510
its clearly says tha ParallelUniverse Class is not found. assure that you have imported that to your project
– Amas
Jan 1 at 8:48
It's an internal crash, and I think I have imported the relevant dependencies. I'll post them up as update
– dor
Jan 1 at 8:52
add a comment |
its clearly says tha ParallelUniverse Class is not found. assure that you have imported that to your project
– Amas
Jan 1 at 8:48
It's an internal crash, and I think I have imported the relevant dependencies. I'll post them up as update
– dor
Jan 1 at 8:52
its clearly says tha ParallelUniverse Class is not found. assure that you have imported that to your project
– Amas
Jan 1 at 8:48
its clearly says tha ParallelUniverse Class is not found. assure that you have imported that to your project
– Amas
Jan 1 at 8:48
It's an internal crash, and I think I have imported the relevant dependencies. I'll post them up as update
– dor
Jan 1 at 8:52
It's an internal crash, and I think I have imported the relevant dependencies. I'll post them up as update
– dor
Jan 1 at 8:52
add a comment |
1 Answer
1
active
oldest
votes
So turns out when we tried running the tests using the "none" option, we couldn't run them because the command was too long. Running with the classpath option simply does not import the rest of the Android environment, but simply runs the test. Running with the "JAR" option gives the correct result, and the test runs as expected
Cheers, and thanks for the help!
2
Thanks, would have taken years to figure that
– 4ndro1d
Jan 7 at 11:34
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994114%2frobolectric-java-lang-runtimeexception-java-lang-classnotfoundexception-org-r%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
So turns out when we tried running the tests using the "none" option, we couldn't run them because the command was too long. Running with the classpath option simply does not import the rest of the Android environment, but simply runs the test. Running with the "JAR" option gives the correct result, and the test runs as expected
Cheers, and thanks for the help!
2
Thanks, would have taken years to figure that
– 4ndro1d
Jan 7 at 11:34
add a comment |
So turns out when we tried running the tests using the "none" option, we couldn't run them because the command was too long. Running with the classpath option simply does not import the rest of the Android environment, but simply runs the test. Running with the "JAR" option gives the correct result, and the test runs as expected
Cheers, and thanks for the help!
2
Thanks, would have taken years to figure that
– 4ndro1d
Jan 7 at 11:34
add a comment |
So turns out when we tried running the tests using the "none" option, we couldn't run them because the command was too long. Running with the classpath option simply does not import the rest of the Android environment, but simply runs the test. Running with the "JAR" option gives the correct result, and the test runs as expected
Cheers, and thanks for the help!
So turns out when we tried running the tests using the "none" option, we couldn't run them because the command was too long. Running with the classpath option simply does not import the rest of the Android environment, but simply runs the test. Running with the "JAR" option gives the correct result, and the test runs as expected
Cheers, and thanks for the help!
answered Jan 3 at 10:21
dordor
5510
5510
2
Thanks, would have taken years to figure that
– 4ndro1d
Jan 7 at 11:34
add a comment |
2
Thanks, would have taken years to figure that
– 4ndro1d
Jan 7 at 11:34
2
2
Thanks, would have taken years to figure that
– 4ndro1d
Jan 7 at 11:34
Thanks, would have taken years to figure that
– 4ndro1d
Jan 7 at 11:34
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53994114%2frobolectric-java-lang-runtimeexception-java-lang-classnotfoundexception-org-r%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
its clearly says tha ParallelUniverse Class is not found. assure that you have imported that to your project
– Amas
Jan 1 at 8:48
It's an internal crash, and I think I have imported the relevant dependencies. I'll post them up as update
– dor
Jan 1 at 8:52