Tagged Questions
1
vote
3answers
43 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
vote
1answer
27 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:
...
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 ...
1
vote
0answers
31 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 ...
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
3answers
48 views
Injecting into @Autowired variable during testing
I have a component setup that is essentially a launcher for an application. It is configured like so:
@Component
public class MyLauncher {
@Autowired
MyService myService;
//other methods
...
0
votes
2answers
59 views
Proper Unit Testing in void method in java without mocking
Is there a way to test a method that doesn't return any value without the use of Mockito?
This is the sample method. I'm new in Unit Testing.
public void addMantisData(ArrayList<Mantis> list) {
...
0
votes
1answer
64 views
Failed to load ApplicationContext
Currently I'm setting-up a Spring MVC + Hibernate + Maven Web Application.
Im stack with a JUnit error forbidding the run of my application with tomcat
Here is the JUnit failure trace :
...
0
votes
2answers
28 views
how can I inject “nulls” into autowired spring beans?
I am writing unit-tests and have a quite complex setting.
A dependent bean sets up some listeners and passes them autowired services.
I want to test that the listeners are present, but not call ...
-3
votes
0answers
49 views
Throwable occurred: java.lang.IllegalStateException: Failed to load ApplicationContext [closed]
Throwable occurred: java.lang.IllegalStateException: Failed to load ApplicationContext
at org.springframework.test.context.TestContext.getApplicationContext(TestContext.java:308)
at ...
0
votes
1answer
90 views
Unable to load Spring ApplicationContext in JUnit test
I have a junit test like so below: (running in eclipse 3.7 using maven)
@Configurable(autowire = Autowire.BY_NAME)
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = ...
0
votes
1answer
32 views
Trying to write junit test in Spring with JavaConfig
I am trying to write a junit test for my example project but don't know how to access the ApplicationContext in the jUnit Test:
Here is the main class of the project that works:
public static void ...
0
votes
2answers
42 views
In JUnit 3, Do Tests Share a Spring Container?
In JUnit 3, are tests run within the same spring container? or does each test get its own container?
What can be done to prevent tests form 'bleeding' session data to other tests?
1
vote
0answers
41 views
JPA + JUnit. @OneToOne binding inside a transaction in
I use JUnit + Spring + JPA
I have two entities with @OneToOne relationship:
@Entity
public class Principal {
//...
@OneToOne
@JoinColumn(name = "user_id")
private User user;
//...
}
...
-1
votes
1answer
86 views
Why am I getting “Failed to load ApplicationContext” Spring, jUnit with JavaConfig
Why am I getting "Failed to load ApplicationContext" Spring, jUnit with JavaConfig
Here is my test class:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = ...
1
vote
1answer
62 views
junit executes each line two times
Running up Junt test on my project each code line is executed two times, as in stack trace below:
TransactionAspectSupport - Getting transaction for ...
0
votes
1answer
24 views
Issue with SpringJUnit4ClassRunner, H2 db inetgration test
I am trying to write an integration test using h2 db, I am getting an error as "error: cannot access BlockJUnit4ClassRunner" at the line @RunWith()
Can any one suggest something please? I have no ...
0
votes
1answer
39 views
Eclipse cant find some of the JUnit files
I have a maven project with spring. And we also have alot of JUnit test classes. We are using Eclipse. Every now and then - quite often actually - eclipse shows some (not all) of the test classes as ...
2
votes
2answers
69 views
unit testing in an entangled spring context
Given a legacy application has 1500 spring.xmls. I want to write a unit test for a service. I am deep in the dependency hell. I have to accept the app as is, no way out.
So we use spring-3.something ...
1
vote
1answer
120 views
Invoke Struts Action Test from within a web app (JSF managed bean): TestCase.fname cannot be null
I have a Junit 3.8 test of a Struts 2 action that runs with no problems from my workspace (from eclipse: right click > run as > junit test).
For this, I use two plugins:
<dependency>
...
0
votes
0answers
25 views
Performance impact of PowerMockito
We had the following pattern and it had dramatic impact on test-execution time.
I want to understand why.
@RunWith(PowerMockRunner.class)
@PrepareForTest(SomeSingleton.class)
public class SomeTest {
...
0
votes
1answer
99 views
Using Mock class with dependency injection in a JUnit test
I have a basic Interface which another class is implementing.
package info;
import org.springframework.stereotype.Service;
public interface Student
{
public String getStudentID();
}
`
...
0
votes
1answer
106 views
Validating calls within a method using Mockito or jUnit
I'm working on some modifications to a DAO. The modifications included refactoring some code to keep a couple of methods from calling .getResultsList() multiple times. Instead, the results are cached ...
0
votes
2answers
114 views
How can I get Hibernate bound parameter values to show up in a Junit test?
I'm using Maven 3.0.3, SPring 3.1.1.RELEASE, Hibernate 4.1.0.Final, and log4j 1.2.15. In my Maven project, I have this log4j.xml file in src/test/resources
<?xml version="1.0" ...
0
votes
1answer
118 views
JUnit Test cases failing while running using Maven but works with Eclipse
I have a Junit test case which doesn't work if I run using Maven. But the same test case works when I run using Eclipse.
My Junit class is like this.
@RunWith(SpringJUnit4ClassRunner.class)
...
0
votes
0answers
98 views
Unable to load the Spring application context with ecobertura in Eclipse
I am trying to run the plugin ecobertura in eclipse but it does not load the spring application context. When I run the tests as simple junit tests they work well, everything work well also when I ...
0
votes
2answers
86 views
how to make junit test run methods in order
guys! I have a new question for you. I'm adding some data to cache using different cache managers and I'm facing the problem with it. I'm doing it using junit and spring. When I run the test, the test ...
0
votes
0answers
62 views
Setting real path to MockServletContext
I am trying to stub MockServletConfig and MockServletContext. In my servlet init() method servlet gets the realPath like this:
String realPath = servletContext.getRealPath(fileSeperator+"WEB-INF");
...
0
votes
0answers
41 views
Spring DirtiesContext
I am now using Spring and JUnit, and I use @DirtiesContext to get my test cases independent of each other, but I get OutOfMemoryError each time I run my test case.
Is there any that I can config the ...
0
votes
0answers
66 views
Maven surefire tests failing in Spring framework project
Maven is unable to successfully run my JUnit tests though they are being run without any problem on my Eclipse. I'm unable to solve it from the debug messages.
It is probably something to do with the ...
1
vote
1answer
536 views
Spring 3.2.2: MockMVC, returning Empty results
I have the following REST controller
@Controller
@RequestMapping("/rest/transceptors")
public class TransceptorRestController
{
@Autowired
private TransceptorDao transceptorDao;
...
0
votes
1answer
71 views
JUnit test in Spring - overriding and ingoring beans from application other configuration classes
We have large application written in Spring 3. I need to write JUnit test checking behaviour of some service. It is not a unit but part of a system. There are some services and repositories working ...
0
votes
1answer
53 views
Spring Test Context Framework
I have a project which using Test Context Framework.
I'm execute the test using Run As -> JUnit Test but it show initializationError();
Stack trace :
java.lang.NoSuchFieldError: NULL
at ...
1
vote
0answers
29 views
HTTPTransportError - Unexpected WS call using the mocked proxy object
I'm stuck trying to run a unit test that makes a web service request. I'm mocking the proxy object of the jax-ws request in my JUnit test using EasyMock.
I have defined the bean using DI in my ...
1
vote
1answer
57 views
Inner classes declared in tests aren't seen by a application classloader
I have base abstract klas for context tests and want to mock org.springframework.security.core.context.SecurityContextHolder so I created inner class SecurityContextHolderStrategyForTest to use it ...
0
votes
1answer
47 views
jpa problems running multiple tests with spring
my problem is that when I run tests individually the test work properly but when I run all the tests several tests start to fail.
It looks to be a problem of the applicationContext I have 3 ...
0
votes
2answers
76 views
Adding a @Autowired to my Service Layer is making Junit Error Failed to load ApplicationContext?
Adding a @Autowired to my Service Layer is making Junit Error Failed to load ApplicationContext?
My firm has some comment code that we all core. I wanted to add it to my service today so I added it ...
1
vote
2answers
266 views
Spring 3 with Hibernate 4--unit test failure with No Session found for current thread
I have used Spring and Hibernate for years, but this is my first project using Spring 3 and Hibernate 4.
I set up the Model class such:
@Entity
@Table(name = "DICTIONARY_ENTRY", uniqueConstraints = ...
1
vote
2answers
73 views
@NotTransactional alternatives
I'm working on a unit test which commits information through a DAO to a Oracle database, and then retrieves it and checks everything is unchanged.
There are other unit tests in the test class, and at ...
0
votes
1answer
236 views
Using Spring's “jdbc:initialize-database”, how do I run a script with a stored procedure?
I'm using Spring 3.1.1.RELEASE, JUnit 4.8.1, and MySQL 5.5. I want to truncate all my table data before each test, but am getting errors in Spring even though I can execute the following script ...
0
votes
2answers
57 views
JUnit test debuging hangs in IDEA
Follow factors can influence (I guess so):
Test runs with @RunWith(SpringJUnit4ClassRunner.class)
I use IntelliJ IDEA 12.0.4
When I just run tests it works without problems
I'm trying to debug my ...
1
vote
1answer
69 views
Can I write spring java tests in groovy?
I have a junit test in the spring environment with dependency injection in java.
I'm interested in groovy and would like to write my tests with it.
How would look the following test in groovy?
...
1
vote
2answers
185 views
unit testing mock injection
I am trying to unit test my class, and mock the DAO to provide predictable results. Still, it would appear that my DAO's method is still being called as I receive a hibernate error.
...
0
votes
2answers
217 views
Spring MVC Controllers Unit Test not calling @ControllerAdvice
I have a set of Controllers in the application and a class annotated as @ControllerAdvice which sets up certain data elements that are used in each of these controllers. I'm using Spring MVC 3.2 and ...
0
votes
1answer
75 views
Creating test data in database for tests
I want to write test for my project (spring+hibernate), and for tests I use in-memory databese (hsqldb). And I need to fill my database with some data. As for me the best way to do it is using ...
0
votes
3answers
399 views
error autowiring service in test using spring 3 +junit 4 +mybatis
i have a problem with spring 3 tests using junit 4.10 and mybatis. I'm not able to autowire service in the test class.
Here the exception i get
Running ...
0
votes
2answers
637 views
Spring Test & Security: How to mock authentication?
I was trying to figure out how to unit test if my the URLs of my controllers are properly secured. Just in case someone changes things around and accidentally removes security settings.
My ...
0
votes
2answers
152 views
@Autowired is null in the class which extends Junit Testwatcher
I am using Spring autoscan components in my testing framework.
Autowired works fine in all classes except in class which extends Junit Testwatcher.
The class where I extend Junit testwatcher is:
...
0
votes
1answer
281 views
Junit testing DAO layer with Spring and Hibernate
I try to test simple class:
public class GenericDAO {
@Autowired
protected SessionFactory sessionFactory;
public <T> Serializable create(final T o) {
return ...
0
votes
2answers
88 views
@AfterClass in SpringJUnit4ClassRunner (how to use beans in teardown)
I want to use beans in tear-down method in spring unit test (SpringJUnit4ClassRunner).
But this method (that is annotated with @AfterClass) should be static. What can be the solution?
example:
...


