Tagged Questions
-1
votes
1answer
58 views
TDD: how to verify method calls made from a list of objects in Java? [closed]
I have a class FileGenerator, and I'm writing a test for the generateFile() method that should do the following:
1) it should call the static method getBlockImpl(FileTypeEnum) on BlockAbstractFactory
...
3
votes
2answers
263 views
TDD: how to mock static method in Java?
Please bare with me, as I am new to the TDD world.
I have a class FileGenerator, and I'm writing a test for the generateFile() method that should do the following:
1) it should call the static ...
0
votes
1answer
217 views
Mockito & Junit null pointer exception: name must not be null
I have been trying to run the following test using mockito and junit and I keep on getting "java.lang.NullPointerException: name must not be null"
Can anyone tell me why this is happening?
On ...
3
votes
2answers
158 views
Should we unit test console outputs?
I am working with some legacy code that has some System.out.print commands in itself.
My eCobertura plugin shows this lines red, so I want to unit test them.
Here in stackoverflow I found a way to ...
1
vote
1answer
90 views
How to test a legacy application (and adopt Test Driven Development) without introducing risk?
I have been asked to bring an old java based application up to date and inline with more current apps I have worked on.
One of the things we would like to introduce is Test driven Dev for any new ...
0
votes
2answers
130 views
Unit testing void methods w/ dependencies that change state with subsequent operation
I am having trouble unit testing a void method and mocking a dependency when that dependency changes the state of the passed reference. I understand that side-effects can be observed on a void method ...
5
votes
2answers
113 views
Reducing Coupling Between Test Cases
I am trying to learn more about JUnit and TDD, but I am running into some issues with coupling between test cases.
When I am writing a test case for a particular data type's API, say a ...
-2
votes
2answers
142 views
Comparing two object arrays in JUnit
I have implemented a cardgame and need to test the shuffle method. I am using netbeans 7.2 and am now having a problem because the deckBeforeShuffle is empty after i call the instance.shuffleDeck ...
0
votes
2answers
139 views
JUnit expects IOException when IOE is thrown, marks test as failed
I've got a few test methods that aren't behaving as I expect them to be. In these scenarios, I'm writing logging messages to a text file.
Both methods are about closing the output link to the file ...
1
vote
2answers
168 views
Is there a general way to mark a JUnit test as pending?
Before stepping into the TDD cycle, I like to sketch out the tests that need to be implemented - i.e. write empty test methods with speaking names.
Unfortunately I have not found a way to "paint them ...
1
vote
3answers
88 views
Unit testing - confused
I am learning unit testing and am getting confused by what a test is and the boundries of where to go with them.
So the answer in this question is very clear - ...
2
votes
1answer
116 views
Junit. Is there a way to get output formatted like rspec output?
I usually code in ruby, and use rspec for my unit tests.
Now I have to do some work in java, so I'm using JUnit. The output from multiple test suites looks like this;
test:
[junit] Running ...
4
votes
2answers
56 views
Should we define our interface to make it more testable?
For example, snippet A
String readSource(String file);
snippet B
String readSource(InputStream in);
So if we define the interface as A, then we can only create a file just for testing. But it ...
-1
votes
2answers
169 views
Adding polynomials
I need some help. I am doing test-driven development. These are the tests:
@Test public void add01() throws TError { assertEquals(new Term(10,5), new Term(4,5).add(new Term(6,5))); }
@Test public ...
0
votes
2answers
63 views
What is the appropriate way to mock 2 classes that implement an interface with Mockito?
I have 2 classes that implement one interface.
public interface DataAccess { /*....*/ }
public class DataAccessCache implements DataAccess { /*...*/ }
public class DataAccessMemory implements ...
2
votes
4answers
260 views
considering NullPointerException as a unit test failure: is it good practice?
assume you have a unit test that contains these lines
assertNotNull(someVal);
assertNotEmpty(someVal);
This obviously checks that someVal is not null and is populated with something.
The question ...
0
votes
1answer
105 views
Testing DELETE using spring-test-mvc
I am using Spring MVC to create RESTful endpoints. I am using spring-test-mvc to test them at the unit/integration test level. I am now coming across this team's first attempt at implementing an ...
0
votes
1answer
92 views
Is it possible to skip validation column names in dbunit
Is it possible to skip validation of columns in DBUnit?
I prefer to use FlatXmlDataSet because it is easier to maintain. But for comparing the result I have to use XmlDataSet which has always all ...
1
vote
2answers
276 views
Visual studio parameterized unit test like java
in java test wnvorienment I can use parameterized unit test like following code,
@RunWith(value = Parameterized.class)
public class JunitTest6 {
private int number;
public JunitTest6(int ...
0
votes
1answer
251 views
Mocking a method with possible null values in powermock
I have a method which does the following as a part of the operation:
URL resourceUrl = new File(sampleString1.concat("/")
.concat(sampleString2)).toURI().toURL();
SampleString1 and ...
5
votes
3answers
455 views
Rapid Test Driven Development in Java
I have been using the guard framework in rails for quiet a while and I have just fallen in love with it. I also work in Java a lot and I find it surprising that such a tool is not available for rapid ...
0
votes
1answer
107 views
How to let android ui thread execute to the end when testing?
I have a app which will download a file from web. The download action is triggered by clicking a button and then it will start a new thread to download this file.
What I want to do now is to test if ...
0
votes
2answers
238 views
Is it possible to enter debug mode for android when running junit test?
Usually i run a junit test using adb shell am instrument -w com.android.contacts.tests/android.test.InstrumentationTestRunner. And it actually works, it will run all may test.
But when i make a ...
24
votes
7answers
3k views
Why use JUnit for testing?
Maybe my question is a newbie one, but I can not really understand the circumstances under which I would use junit?
Whether I write simple applications or larger ones I test them with the System.out ...
0
votes
0answers
49 views
Is it possible to let activity run to the end in setup method?
Currently, i am trying to do some TDD using android stock junit framework.
I would like to click a button and let the activity to get a file from remote server in setUp method, then in the following ...
4
votes
3answers
430 views
What is the best approach for Unit testing when you have interfaces with both dummy & real implementations?
I'm familiar with the basic principles of TDD, being :
Write tests, these will fail because of no implementation
Write basic implementation to make tests pass
Refactor code
However, I'm a little ...
4
votes
4answers
466 views
How to test passing of time in jUnit test without accessing private variables?
I'm unit testing a class where I need a certain amount of time to pass before I can check results. Specifically I need x minutes to pass before I can tell whether the test worked or not. I have read ...
2
votes
1answer
386 views
JUnit test needs to invoke GWT's URL.encode() server side
I would like to write a JUnit test for one of my GWT classes that calls com.google.gwt.http.client.URL.encode(String s) method. This throws me this exception:
java.lang.UnsatisfiedLinkError: ...
3
votes
3answers
629 views
JUnit Test method that use other methods in the same object
Hello I am struggling with simple problem.
General idea:
class Foo(){
public boolean method1();
public String method2();
public String method3();
public String shortcut(){
return ...
0
votes
3answers
88 views
Tests for UI of a wizard application
I have been working on a Wizard application with Spring Web Flow and JSP/Tiles as View Technology. We have written UI Acceptance tests with webDriver/Selenium to test specific pages but have hit a ...
2
votes
1answer
467 views
Unit testing Activity.startService() call?
Attempting to write my first Android-by-TDD app (I've written a few small Android apps without TDD, so am familiar with the environment), but I can't seem to get my head around how to write my first ...
0
votes
1answer
171 views
Database base unit testing strategy: truncating tables between unit tests & test data
I'm attempting to use JUnit to test some database code. I'm pretty new to this so please bear with me.
I have a local test database which consists of four tables. Two of these tables are populated ...
1
vote
1answer
165 views
Organizing test in unit testing
I'm learning about unit testing, and I'm trying to understand where the pieces fit together.
Say I have something like:
public class CarTest {
public CarTest() {
}
@BeforeClass
...
0
votes
2answers
446 views
How focused JUnit tests in BDD way should be
I'm test-driving some code for practice and spotted strange situation.
There is a ChannelRegistry that contains all communication channels references, and PrimaryConsumer who needs to attach itself ...
0
votes
1answer
112 views
Calling assertArrayEquals in junit test executed using ant
Im using ant to build my project, and im using junit for writing tests. I am facing a strange problem. Consider the code below
import junit.framework.*;
public class Test extends TestCase {
...
2
votes
2answers
807 views
Formula for testing DAOs with Hibernate/JPA Mappings and JUnit
I have found many questions related to this, but a lot of the discussion is around using HSQL databases instead of configuring Eclipse and the Command Line to run actual tests.
Say I have the ...
1
vote
3answers
381 views
Is it possible to test a local value use a junit test?
I find TDD is really a powerful programming skill, but I am quite a newbie to it.
The problem I encounter is that sometimes I would like to test an intermediate value in a method. But the method ...
1
vote
1answer
620 views
Unit testing with jdeveloper 10g
I want to use JUnit or similiar TDD frameworks and plugins at my work environment. But where I work, migrating to jdeveloper 11g or eclipse is not considerable in a near future.
We are using ...
1
vote
2answers
2k views
Is mockito supposed to call default constructor of mocked class?
I'm trying to create a Mockito mock object of a class with some rather heavy network and transaction behavior which I don't want to have to deal with in the current unit test I'm writing. It does ...
3
votes
3answers
94 views
Is it ok to verify using another public method while unit testing a public method
I am trying to come up with a test case for a Queue class that I have not yet implemented. While trying to write the code for testEnqueue method I could not find ways to verify apart from using size() ...
5
votes
4answers
807 views
Many Test classes or one Test class with many methods?
I have a PersonDao that I'm writing unit tests against.
There are about 18-20 methods in PersonDao of the form -
getAllPersons()
getAllPersonsByCategory()
getAllPersonsUnder21() etc
...
0
votes
4answers
631 views
Integration Test for JUnit
I am very new to TDD in general so please forgive me if my question does not make lots of sense.
After looking looking around for a bit, it seems that jUnit is capable of implement integration test. ...
2
votes
2answers
819 views
How do you test code written against AWS API
I'm writing an application in Java that will upload a file up to AWS S3. The file will be given to the application in an argument, not hardcoded. I'd like to write tests to ensure that the file ...
0
votes
1answer
729 views
GWT RequestBuilder fails with SSL connections (in tests). Why? Are there any workarounds?
I try to connect to a (local) web service using the GWT RequestBuilder with a secure connection (SSL), but the connection isn't established... When I connect using a plain HTTP connection everything ...
0
votes
3answers
595 views
JUnit-How to write test for a file parsing method?
I'm new to test development and am trying to break my non-tdd habits.
Most of the functional, testable code in my app has to do with database i/o or file reading/writing. Android provides some ...
4
votes
4answers
1k views
How to unit test a method that runs into an infinite loop for some input?
This question just occurred to my mind and I want to ask this here.
The case is intentional, I just write a loop which runs infinitely. How do I go about unit testing it?
I ask this because, this ...
3
votes
3answers
535 views
unit test best practice for method with mocks in Mockito
Lets say we have method to test in class A that calls method from class B. To test it we created mock for B and then verify if it was called. Is verify(...) enough for unit test or I need assert ...
2
votes
5answers
414 views
Method naming in TDD or BDD when doing the simplest thing that can possibly work
For example, I have to create Vector class that can return vectors length.
First I add test:
@Test
public void shouldReturnLengthOfVector() {
Vector3D vector = new Vector3D(4d, 2d, -4d);
...
2
votes
3answers
81 views
Weird problem with doing tests with junit
I'm writing a little library for movies for myself. It's partly for learning TDD. Now I have a problem I can't solve.
The code is in here ...
0
votes
3answers
1k views
how to do DAO(db) layer unit test?
since the dao layer methods will be dependent on data in the database,
in complex systems some operations will depend on lots of tables,
in this way unit test are not repeatable and independent,
...

