Popular unit testing framework for Java and Scala. The latest version, JUnit 4, supports rich annotation-based and parameterized tests. Consider using in conjunction with the Java or Scala tag to indicate your use case.
0
votes
1answer
12 views
Junit/Mockito - wait for method execution
In my application I use observer pattern for some operations and I want to test them in unit tests. The problem is that I don't know how can I test observers using junit/mockito/something else. Any ...
1
vote
0answers
27 views
Java Application Debugging Using Eclipse Scrapbook
I have a Java application with several (10) packages and almost 50 classes. My task is to understand the application (with poor documentation and no test cases). The application seem to have several ...
1
vote
1answer
56 views
To use Android Studio encountered an error
I have Android Studio (Google I/O Preview).
I created an android project in Android Studio, and when I run it, the Studio tell me :
/usr/lib/jvm/java-1.7.0-openjdk-amd64/bin/java -ea ...
0
votes
1answer
16 views
JUnit NoClassDefFoundError
I'm new at JUnit and use inteliji idea.
import org.junit.Test;
import org.junit.Ignore;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import java.util.Date;
import static ...
0
votes
0answers
11 views
mybatis 3.1.1+ dont show sql while running JUnit test
I got problem with mybatis to log sql queries. logback configuration set to DEBUG.
<logger name="java.sql" level="DEBUG" additivity="false" />
<logger name="org.springframework" ...
-1
votes
1answer
26 views
Cannot find package org.junit when compiling java file in command prompt
Whenever I run my java file in command prompt, I keep getting errors saying:
error: package org.junit does not exist
import static org.junit.Assert.*;
This also gives errors on symbols like ...
7
votes
3answers
75 views
Thread behaving strangely in JUnit
I'm trying to write a unit test that requires mulitple threads. However, it seems that the threads just stop part way through execution. Consider the following code:
public class Test {
...
0
votes
0answers
14 views
“No information about coverage per test.” from Sonar with Jacoco Ant build
I'm using Ant, Jacoco and Sonar. When I run my build Sonar tells me that "No information about coverage per test." and the Sonar dashboard has my coverage results, but I cannot drill down into them to ...
0
votes
0answers
9 views
Testing Message Passing with Messengers in Android
I'm trying to test the IPC functionality in my Android application.
I have a service to which clients can bind and send Message objects via the Messenger API. How do I go about testing this?
I tried ...
1
vote
3answers
51 views
How to use Mockito for testing sendEmail() method without sending email?
I need your help with using Mockito for unit tests.
My project have only DAOs and Services, so it's web project.
I have interface EmailDao and it's implementation EmailDaoImpl class. Now I have ...
-1
votes
2answers
61 views
JUnit not null test
I'm trying to implement an easy junit test for a method. My intention is to test if the method parameter is not null. So that the test fails if the parameter is null.
the method is:
/*
* @return ...
0
votes
2answers
34 views
Two public method calls a private method
I heard some one said that it's better to write Junit test for a private method via a public method. But in this case, I should test private method to avoid the duplicated code. Is it good approach?
1
vote
1answer
29 views
MockMVC how to test exception and response code in the same test case
I want to assert that an exception is raised and that the server returns an 500 internal server error.
To highlight the intent a code snippet is provided:
...
0
votes
1answer
30 views
PowerMockito cannot mock constructor for FileInputStream
I am trying to mock the constructor for the FileInputStream and I have the following code:
@RunWith(PowerMockRunner.class)
@PrepareForTest(FileInputStream.class)
public class DBUtilsTest {
...
0
votes
3answers
40 views
how to handle exceptions in junit
Hi I am writing test case to test some method. But method throws an exception. Am I doing it correctly?
private void testNumber(String word, int number) {
try {
assertEquals(word, ...
1
vote
3answers
45 views
JPA Entities not scanned during unit test
I have a mature java application using Hibernate/JPA that is working just fine. We are trying to add some unit/integration tests. I am doing this using Spring's TestContext framework, my test class ...
2
votes
0answers
182 views
Android Studio import existing unit tests “Unable to find instrumentation info”
So I'm trying our Android Studio and testing a project that worked in eclipse. I got everything compiling and the application will launch just fine, but I can't get my unit tests up and working. I ...
0
votes
0answers
12 views
Robolectric. DevicePolicyManager testing
How I can test a system service with Robolectric? In my case I need to test DevicePolicyManager. Below piece of my code:
public class DeviceAdministratorHelper {
DevicePolicyManager ...
1
vote
1answer
17 views
What is Junit trying to tell me when it throws a “NoTestsRemainException”
I'm trying to run tests of the Apache POI project, but get the following exception. I saw it already a few times before, but every time I am completely lost about what JUnit is trying to tell me?
...
0
votes
2answers
40 views
What is the best way to run integration tests using a web server?
As the title says, I'm interested in the best approaches of testing an application using a Jetty web server, taking in consideration that you don't want to start/stop the test server for each ...
0
votes
1answer
29 views
Get() and Set() between multiple @Test, Selenium WebDriver
I'm using Selenium WebDriver and Arquillian drone for these test.
how my tests are build :
@RunWith(Arquillian.class)
public class SimpleTest{
private String idPo;
public String getIdPo() {
...
0
votes
2answers
27 views
Running JUnit tests with different data
I have a suite of unit tests. I have a static variable which gets initialized in setup() method. I want to run all my suite of unit tests with two different values of that static variable.
Static ...
1
vote
1answer
20 views
jmockit mocked constructor not returning expected value
I am trying to unit test a class where one of its methods returns an instance of a collaborator class: depending on the values of its arguments it either returns a newly created instance, or a saved, ...
0
votes
2answers
44 views
Mockito mock objects returns null
Hey i try to implement some tests for my jsf application and for the mocks i am using mockito. (I also use spring)
@RunWith(MockitoJUnitRunner.class)
public class GeneralConfigServiceImplTest {
...
0
votes
1answer
29 views
Test project within a current project
I Have tried to create a test project for my android project, according to Android Developer it should be placed within the project you want to test. I have read all the posts with related problems ...
0
votes
1answer
21 views
how to “debug as maven test” in eclipse (sts)
I have written test cases in JUnit and they are executing fine when I use run as - maven test. But although I put debug points and select debug as - maven test, debugging does not work. I use ...
-1
votes
1answer
32 views
Web Application Tests Visualization [closed]
I'm testing a web application with several functionalities. I didn't develop this application, I'm a mere tester. I'm new to testing and when I started working on it I was given a series a Selenium ...
0
votes
4answers
84 views
Check if a method was called inside another method
Is there any way in java to check if a certain method was called inside another method? I am testing a class and the method I am having trouble with plays sound and there is virtually no way of ...
0
votes
1answer
22 views
How registry JNDI datasource for JUnit for Jboss environment
Project use Hibernate and deployed on Jboss 5.1. Hibernate uses JNDI to get datasource.
I want create JUnit tests for DAO layer and for this I need create JNDI data source and transaction manager to ...
0
votes
0answers
20 views
Android: Human click vs. Junit click
When I click a button, which opens a new activity, the onStop() methode is called.
When Junit clicks the same button, the methode isn't called.
What's the difference? Can I force my app to execute ...
-2
votes
2answers
60 views
-2
votes
1answer
12 views
I dont run mi script junit by .bat
I read other questions like a: "How to run Junit testcases from command line?" and "how to run junit test command line from java [duplicate]"
I still can not run my script from a file .bat:
java -cp ...
1
vote
0answers
32 views
How to add an xml of a dependant project in eclipse
I currently having an applicationContext.xml of an existing project. I created a new junit -Java project in which I kept the previous project as dependent project. I created an xml ...
1
vote
2answers
35 views
Testing Storm Bolts and Spouts
This is a general question regarding Unit Testing Bolts and Spouts in a Storm Topology written in Java.
What is the recommended practice and guideline for unit-testing (JUnit?) Bolts and Spouts?
...
-1
votes
0answers
20 views
Jersey tests not running
I am trying to run some dummy jersey unit tests using the Jersey Test Framework. I did everything as shown, but still can't run them. Here is what am I trying to run:
public class BoardTest ...
0
votes
1answer
19 views
How to identify and run the JUnit test cases dynamically againest the multipledata sets corresponding to each test
I have a data configured in Excel Sheet. Excel sheet name is equal to Test Class Name and first Sheet Contains testMethods and correspoing data sheetnames. i have constucted a Map>> object is like ...
0
votes
1answer
25 views
Jenkins sometimes takes JUnit @Ignore tag into account, sometimes not?
I have added @Ignore tag to some test classes (class level, not method level). Some of these test classes with @Ignore tag are now ignored by Jenkins (correct), but some classes with @Ignore tag are ...
0
votes
0answers
27 views
How to easily find all JUnit tests in Eclipse that have no test methods
I need to easily retrieve all JUnit tests in Eclipse that have no test methods. I need to add an @Ignore tag and import the Ignore class to those classes. Any easy way to do this? :)
2
votes
2answers
59 views
Compare two XML strings ignoring element order
Support I have two xml strings
<test>
<elem>a</elem>
<elem>b</elem>
</test>
<test>
<elem>b</elem>
<elem>a</elem>
...
0
votes
1answer
49 views
How to assign JUnit test resolution in Jenkins/Sonar?
We are a team who develop a software written in Java. We use JUnit for unit tests. We would like to find a plugin for Jenkins/Sonar to monitor the results of unit tests.
The aim is to know which test ...
3
votes
1answer
65 views
Loading a native library in an Android JUnit test
I've generated a native library using ndk-build which I'm able to load and use with in my Android application. However, I want to write some tests against this part of my app.
When calling the native ...
0
votes
0answers
36 views
skip aspect when running Junit test - maven test
I have aspects in my spring mvc project. It uses Before annotation to check authorization access before every controller method. Now I need to writes some JUnit Test cases for Spring MVC controller ...
0
votes
2answers
29 views
Unit tests with different severity
I'm testing a set of classes and my unit tests so far are along the lines
1. read in some data from file X
2. create new object Y
3. sanity assert some basic properties of Y
4. assert advanced ...
0
votes
0answers
34 views
Very Strange error found during unit testing of my web server project using junit
I am working on one project namely HTTP THREADPOOL WEB SERVER. Now I am writing unit tests of the same using Junit in maven.
In the mean while I found one weird error, I didn't understand why that ...
1
vote
0answers
44 views
Testing a Geo Transformation fails in maven, works in eclipse
In our current project we use a maven setup to manage dependencies and run unit tests. At some point in development one of our tests stoped working (we are not sure at what point exactly, so we don't ...
2
votes
3answers
24 views
Custom exception message using JUnit assertEquals?
I'm using assert equals to compare two numbers
Assert.assertEquals("My error message", First , Second);
Then, when I generate the Test Report I get
"My error message expected (First) was ...
0
votes
1answer
29 views
How to choose a Mock framework for web application running on Java EE and what is general important Mock framework? [closed]
I need your help in choosing mock framework.
I'm a junior developer of web application in Java EE with Maven, Spring and Hibernate. We have many jUnit tests for DAO and service layer. Now I got a new ...
0
votes
2answers
20 views
Why Unit test of WebServer project shows strange behaviour?
I am writing Unit test of my project HTTP THREADPOOLED WEB SERVER. For that I am using Junit in Maven.
In the mean while I stuck in one place, and the doubt is as follows,
There is one class ...
0
votes
0answers
44 views
wicket unit testing : strange behaviour of startPage(Page page) and startPage(Class<Page> pageClass)
I got some strange behaviour of my unit tests.
My simple Page looks like:
public class RegistrationPage extends BasePage {
public RegistrationPage(IModel<Service> model) {
...
8
votes
3answers
94 views
+50
JUnit parameterized tests: how do I run only 1 specific test from IntelliJ/Eclipse?
I have a @Parameterized junit test that spawns 50 tests:
@RunWith(Parameterized.class)
public class NurseRosteringSolveAllTurtleTest ... {
@Parameterized.Parameters(name = "{index}: {0}")
...
