Tagged Questions
0
votes
1answer
34 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
1answer
30 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 ...
1
vote
4answers
50 views
What is the best way to unit test a method using ServerSocket class?
I have a such method:
public boolean isFree(LdapPort port) {
boolean result = false;
try{
ServerSocket ss = new ServerSocket(port.getPortNumber());
ss.getLocalPort();
...
0
votes
1answer
60 views
Mockito with local variables
I have a simple method that returns a String.
It also creates a local List. I want to test the value added to the local List.
Here is an example
package com.impl;
import java.util.ArrayList;
...
0
votes
1answer
41 views
How to test method that uses external package to interact with DB
I am trying to test a function, which is part of the business logic layer of a struts application. I am facing problem because the code is dependent on external functions in a organization wide used ...
0
votes
0answers
26 views
Mocking network packets from different IP addresses for java unit tests
I need to test java code that receives network packets from multiple IP addresses.
How can I mock the system up in Java unit test?
0
votes
1answer
53 views
How do I test a class using JUnit 4 that extends an abstract class?
I am trying to write a unit test for a java class that is extending an abstract class? The java class looks sort of like:
public class XYZFilter extends XYZDataFilter{
@Override
protected ...
3
votes
3answers
88 views
Using Mockito to stub and execute methods for testing
I've asked a couple of jUnit and Mockito oriented questions recently and I'm still really struggling to get the hang of it. The tutorials are all for very simple examples, so I'm struggling to scale ...
0
votes
2answers
57 views
EasyMock Void Methods mismatch of object hashcode
I have create an mock object for HttpSession like below.
HttpSession mocks.createMock(HttpSession.class);
Now i am testing some method the method is
public String validateProduct(String ...
1
vote
2answers
42 views
how to write unit test for this class in JUnit
//how to write unit test for this class in JUnit......
package com.emr.common.helper;
import java.util.Random;
public class RandomTextGenerator {
public static String getAutogenerateText()
...
0
votes
2answers
143 views
How to mock REST service response on the client side?
I would like to mock the RESTEasy client response in my JUnit tests with response body from the content in predefined xml-files. Consider following Person service client API and Person entity:
...
0
votes
1answer
50 views
Suppressing a void static method and a static method in same class with PowerMock
I'm currently trying to do some unit testing on a some legacy code using PowerMock 1.4.10 and there is a method that I'm trying to test that has both static void calls and static non-void calls. Is ...
0
votes
2answers
59 views
Unit test mocking - doesnt make sense for me
I am trying to learn unit testing and have the following situation I just cant get my head around:
I have a model: SalesOrder - which models orders in an ecommerce store
The SalesOrder has a ...
2
votes
1answer
51 views
Mock an abstract base class using EasyMock
I have an abstract base class (parent) and a derived class (child)
public class child extend parent{
public void child(...) {
super(..)
}
}
public abstract class parent{
.
.
...
0
votes
3answers
77 views
How to mock an exception when creating an instance of a new class using Mockito
Within a method, I have an exception being caught which I want to mock.
I know how to mock an object to throw an exception using mock.doSomething(), but I need to throw a remote exception when a ...
0
votes
1answer
80 views
how to mock third party classes in fitnesse
I have written one fixture:
!define TEST_SYSTEM {slim}
!path E:\eclipse\eclipse_workspace\FitnesseDemo\bin
Calculator Example
|com.example.qc.fixture.CalcFixture|
|pad1|pad2|margin1|margin2|get ...
3
votes
2answers
60 views
How to mock a full method?
It is possible to mock a full method? Or would I have to mock every single service call inside that method?
Here is a (silly) example:
class Foo {
void update() {
service1.do();
...
1
vote
0answers
31 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
votes
1answer
32 views
Access the original object instead of returning in powermock-mockito?
Lets take an example (Note I am using PowerMock - Mockito )
Class A {
public void method1(Object obj)
{
}
}
Now , when we use mockito , we have the api's like ...
0
votes
1answer
65 views
JMock and Scala - unexpected invocation error
I'm new to JMock and trying to get a simple unit test working through Scala. The test is mocking an interface and then setting some xpectations before executing a method on the mocked interface.
...
0
votes
0answers
53 views
EasyMock or Mockito? [closed]
I have seen many posts for recommendations. Before down voting please read question carefully.
The posts I am seeing are 2 yrs old on stackoverflow. I want to know in todays date which is best testing ...
-2
votes
3answers
182 views
How to write JUNIT test case for mocking?
I have the method similar to following structure.
method1(Object obj,byte[] myarray)
{
mymanager.dbcall1();
mymanager2.dbcall2();
}
Now I want to write the JUNIT test case which can ...
0
votes
1answer
83 views
EasyMock calling two DAO methods- Unexpected method call UserAdminDAO.updateUser
In my unit test for DAO method, I am trying to test the update user method. But, I have to create an user and then update it. So my mock DAO is expecting the addUser call, but then when I am, calling ...
0
votes
1answer
113 views
Unit testing Apache Wink REST service with MockServletInvocationTest
I use Apache Wink 1.2.1. I would like to unit test my REST service, and I'd rather doing it without using a RestClient. I haven't found any example, but after a lot of searching around I guessed that ...
1
vote
0answers
79 views
Testing class with input-output stream and Handler in android
I have this code and i would like to test if i will set up Handler and called method run with outputstream and inputstream that this class is good working. And i mean by it that i will recieved ...
0
votes
0answers
66 views
Junit Mocking for prepared statement
am using struts2 framework for my project and am very new to junit, tutorials around are easy to startup junit but mocking database connections and preparedstatements are getting difficult. Am in an ...
0
votes
0answers
73 views
How can I mock 'new' with JMockIt and inject my own object?
I'm using JMockIt and am attempting to mock a call to 'new' for ArrayList such that I can inspect the contents after the method being tested has been called but can't seem to get the correct syntax.
...
2
votes
1answer
86 views
How to initialize mocked object?
Lets say I have the following code:
Mocked object class
public class SomeClass {
private Foo someField;
public SomeClass {
someField = new Foo();
}
public Foo getSomeField { ...
0
votes
1answer
177 views
Not able to mock static methods using Powermock (with EasyMock)
I want to mock a static method and also non-static methods of a class.
My source looks like:
public class XDSUtilityManager
{
private static XDSUtilityManager xdsUtilMgr = new ...
1
vote
1answer
194 views
Mocking a Spy method with Mockito
I am writing a unit test for a FizzConfigurator class that looks like:
public class FizzConfigurator {
public void doFoo(String msg) {
doWidget(msg, Config.ALWAYS);
}
public void ...
0
votes
1answer
218 views
java.lang.ClassCastException: com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl cannot be cast to
I am using powermock with powermock-easymock-1.5-full.jar. The following exception occurs.
These are the all jars i have in my classpath. And are downloaded as powermock package from ...
0
votes
1answer
74 views
How to Method call anoither Method In Mock Object
I have object Panel inside is Methods
protected Confirmation confim() {
Confirmation confirmation = new Confirmation() {
@Override
public void onConfirm() {
...
1
vote
3answers
173 views
How do I Unit Test HTTPServlet?
I want to test my servlet with http://www.easymock.org/
How do I write the Unit Testing Code?
I update my code with your responce.
I just used Google and made this code now.
Here is my Servlet:
...
0
votes
1answer
57 views
Frameworks for Mocking JMS
I am designing application using Apache JMS and would like to mock it for unit testing. Can someone suggest the mocking frameworks available or is this an good idea.
Please share your experiences and ...
0
votes
1answer
264 views
JUnit Testing FacesContext.getExternalContext
I have the following code in a Java EE managed bean:
FacesContext context = facesContextProvider.getCurrentInstance();
HttpServletResponse response = (HttpServletResponse) ...
0
votes
1answer
132 views
Dependency verify functions call mockito
I want create unit test to test a class which contains another object. I have created a mock to this second object.
When I test a method of my first class, I want verify if the functions of the ...
2
votes
1answer
157 views
How to create a “FTPS” Mock Server to unit test File Transfer in Java
I have a CreateFTPConnection class which create a FTPS connection. Using this connection, files are transferred. Here is the code of TransferFile class
public class TransferFile
{
private ...
0
votes
2answers
106 views
How to verify method is only ever called with expected arguments?
I'd like to verify that calls against a mock only ever happen with some expected argument values, and never with anything else.
public interface ADependancy {
public void method(String parameter, ...
4
votes
2answers
95 views
Is there anything similar to Junit Setup Method in Mockito
I have the following scenario
interface DAO
{
String a();
String b();
String c();
}
I create a mock of this DAO interface and I feed it to something called DAOProcess. Inside ...
1
vote
1answer
379 views
throwing exception from mockito
I want to throw I/O exception from a method which signatures look like this.
public void putContent(InputStream is) throws ContentIOException.
When I try to throw exception ContentIOException ...
2
votes
3answers
78 views
Java: Unit-Testing cascaded external interfaces
Consider a class that uses an external jar. The class processes objects of type D, which are obtained via objects A, B, and C, all of which external objects from the jar.
class DProcessor() {
...
1
vote
1answer
311 views
How do I inject mocks into a Spring class marked as “@Transactional”?
I'm using SPring 3.1.1.RELEASE and JUnit 4.8.1. In my test class, I want to mock a private field and discovered the beauty of "ReflectionTestUtils" ...
@RunWith(SpringJUnit4ClassRunner.class)
...
0
votes
2answers
288 views
How to mock static member variables
I have a class ClassToTest which has a dependency on ClassToMock.
public class ClassToMock {
private static final String MEMBER_1 = FileReader.readMemeber1();
protected void someMethod() {
...
0
votes
1answer
261 views
web.xml not found. Mock struts test case
This is my project directory structure:
TOPS-WEB
|___
| Java Resources
|___
WebContent
|____
WEB-INF
...
0
votes
2answers
96 views
Using JUnit on android project by mocking few android api classes?
I have some sourcecode in my android project that just uses plain java code.
I created UnitTests (JUnit) for this classes to test them.
The problem is that the functions use internally some android ...
3
votes
3answers
593 views
Mockito: multiple calls to the same method
I am mocking an object with Mockito, the same method on this object is called multiple times and I want to return the same value every time.
This is what I have:
LogEntry entry = null; // this is a ...
5
votes
2answers
3k views
mockito mock a constructor with parameter
I have a class as below:
public class A {
public A(String test) {
bla bla bla
}
public String check() {
bla bla bla
}
}
The logic in the constructor A(String test) ...
1
vote
2answers
457 views
Test java programs that read from stdin and write to stdout
I am writing some code for a programming contest in java. The input to the program is given using stdin and output is on stdout. How are you folks testing programs that work on stdin/stdout? This is ...
2
votes
2answers
78 views
Test that a returned string is of a certain length with Mockito
There's a method with several parameters that returns a String. In many conditions the method throws an exception. When it does return, the contents of the String are dependent on both the parameters ...
1
vote
1answer
183 views
Return different values each time from jMockit expectation
I have a unit test where I am mocking java.net.URI class. Further, I am creating a jMockit NonStrictExpectation where I am expecting invocation of URI.getPath() and returning a particular string.
The ...






