0
votes
1answer
15 views

jUnit Unexpected method call DAO Easymock check User

I have a problem with testing check user method from DAO. Here is the code: private UserService service; private UserDao mockDAO; @Before public void setUp(){ service=new UserService(); ...
0
votes
1answer
69 views

TDD best practice?

Im using a TDD approach with my latest project. Its new for me :) I have a service which will save a CSV record to the database. It will check values for existence and add if necessary - hence the ...
0
votes
1answer
38 views

jUnit Unexpected method call DAO Easymock

I am newbie with mock testing. I want to test my DAO for users. Here is my code. private UserService service; private UserDAO mockDAO; @Before public void setUp(){ service=new UserService(); ...
1
vote
1answer
27 views

Fake android library for TDD

In order to use TDD when developing an android library which can be used in other apps, I decided I could get around the Stub! android.jar by creating copies of the classes which have higher ...
0
votes
1answer
91 views

Best practice TDD - Java Object Validation and clean code

Suppose a Java class called Car, whose objects are initialized through a static factory: public class Car { private String name; private Car(String name){//...} public static Car ...
1
vote
1answer
60 views

How can Java from Kent Beck's book TDD by example be represented in PHP?

I am teaching myself PHP as well as TDD (Using PHP and PHPUnit). I am working through the book Test-driven Development by Example by Kent Beck. In Chapter 3, for example, He suggests this for the ...
1
vote
1answer
88 views

Creating test data: domain builder

I want to create test data for my tests with underlying in-memory database. Common approach is to create some test_data.sql file and create test objects with inserts. And then reference these objects ...
0
votes
2answers
78 views

How can I write test driven java class for download manager?

I am developing a Download Manager using with UP Design.In this Elaboration iteration, my main use case:download the file.Here is the Download.java public class Download implements Runnable { // ...
1
vote
5answers
43 views

How do I write a TDD test for removing a field from a Java class?

I have a Java class with three fields. I realized I only need two of them due to changes in requirements. Ideally I'd write a failing test case before modifying code. Is there a standard way, or ...
-2
votes
1answer
57 views

TDD Approach for the following

How many tests could you write for the enum class below. I am looking for the following O/P. given the following command java fileName HORIZON_BOX, HORIZON_BOX_WITH_CC,HORIZON_BOX_WITH_CC 1 ...
-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 ...
0
votes
2answers
112 views

Does TDD require Unit Tests? [closed]

Does Test Driven Development requires Unit Tests? I frequently find opinions that there is no TDD without Unit Test. I'm unable to confirm it with respected sources like Wiki or books I have access ...
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
2answers
72 views

How to run junit 3 with non default constructor

I have a code base where they define junit test cases as : public class MyTest extends BaseTestCase { public MyTest( String name ) { super( name ); } public void testSome() ...
2
votes
5answers
137 views

Breaking a local dependency to unit test a void method

I am practicing with mockito, but I am a bit stuck on how to test a method that depends on a call to method in a local object. See the following example: public class Worker { public ...
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 ...
1
vote
2answers
69 views

What is the difference between a Seam and a Mock?

Its being a few months since I am working with java legacy code, this are some of the things I am dealing with: 0% test coverage. Huge functions in occasions I even saw some with more than 300 ...
10
votes
3answers
299 views

Unit Test vs Integration Test in Web Development [closed]

I would like to ask about using Unit Testing in Web Development. The idea of Unit Testing is great but does it really bring value in the context of web application? Second part of my question is about ...
3
votes
2answers
54 views

Eclipse : Running tests when you're thinking

I read this Kent Benk tweet : "don't wait. run the tests while you're thinking." I am looking for some kind of plugin that allows me too do this in the eclipse IDE. For exemple, if i am away from ...
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 ...
0
votes
1answer
72 views

UnitTest autorunner on Intellij IDEA for java

I try to use plugin 'fireworks' http://plugins.jetbrains.com/plugin?pr=idea&pluginId=1106 for autrorunning unittests for java code. but it doesn't work. Is any alternative for it? Is anybody ...
0
votes
0answers
42 views

how to test that the correct NNTP article was fetched

I've modified gnu.mail.providers.nntp.NNTPFolder a bit to use generics and to expose the articleCache and groupResponse fields with getters, even if it did take a bit of time to determine what to ...
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 ...
3
votes
1answer
162 views

Can you mock a non static method that calls a static method using Mockito?

I understand you can't mock static methods using mockito. But the method I am trying to mock is not static but it has a call to static methods in it. So can I mock this method? I get exception when ...
1
vote
3answers
157 views

Testing REST service in java

So, here's the thing. There's a REST service I'm using that is supposed to be tested and I can't access the code. I've made some kind of library in java so I can interact with that service, but I ...
1
vote
1answer
112 views

JMockit and Fest UI testing

I have been working on a project that has numerous UI components. Since all the components are based on the MVC pattern, they are structured as a component - public interface and factory, package ...
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
0answers
75 views

Can the TestNG “Failed Tests” output use line breaks?

When I run my TestNG tests I get the following truncated output for failed tests: Failed tests: retrievedDataFromService(com.mydomain.ServiceTest): The returned data is not correct:(..) The actual ...
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 ...
2
votes
2answers
57 views

Test is SessionFactory is valid

I tried to test if SessionFactory was valid through: assertFalse(sessionFactory.isClosed()); But my test passes even if the underlaying datasource could not get connections: ...
1
vote
0answers
64 views

Infinitest does not run @Before{Method,Class} methods when more than one TestNG group is used

I created a sample Eclipse project that demonstrates that Infinitest skips setup methods annotated with Before{Method,Class}, see https://github.com/jaeckel/InfinitestSampleProject. Because of this my ...
-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 ...
0
votes
0answers
78 views

What are good ways to test TCP client-server communication using EasyMock?

I read this link on testing client socket here using EasyMock. However, it seems like the server socket is already written and mocking it is not necessary. Are there ways to test client with mocking ...
0
votes
1answer
61 views

How would I test a web server in Java?

I am basically practicing with Java socket programming by building client and server (not necessarily HTTP server). In brief, the clients are sending request through sockets to server and server adds ...
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 ...
2
votes
1answer
78 views

Is splitting a class to make it easier to test an acceptable behavior?

I know this is somewhat of a subjective question, but I could find no answer to it. I'll give details, though: I have a class that has a lot of configuration methods, so that you can run a specific ...
2
votes
4answers
95 views

testing a huge decomposed method and its inner helper methods

I've been writing a lot of unit tests recently. There's a scenario to which I cannot find a clean solution... Let's say you have a beast of a method: public void bigMethod() { // a lot of code ...
3
votes
1answer
260 views

How to test the hibernate generic dao pattern

I'm starting a project using Google Guice and Hibernate and, in the way to configure the database access layer, I got troubled with several doubts along this process. I'm using JPA annotations in my ...
3
votes
2answers
971 views

How to verify that a specific method was not called using Mockito?

How to verify that a method is not called on an object's dependency? For example: public interface Dependency { void doNotCall(); } public class Foo { public bar(final Dependency d) { ...
-1
votes
2answers
83 views

MVP, testing, and private methods [closed]

I've switched to an MVP architecture and am trying to test it. I have some question on how to structure my Presenter. public class Presenter { public void onResume() { doA(); ...
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
1answer
163 views

Mockito: How do you verify the group order of certain groups of method calls?

I'm using Mockito to verify orders of method calls with the InOrder object. But I am not interested in a total ordering of the calls, only that a certain group of method calls all happen before some ...
6
votes
1answer
326 views

Equivalent of NCrunch for Java in Eclipse

I'm looking for a tool that does continuous testing while I'm writing code (such as NCrunch for Visual Studio) for Java in Eclipse. Is there something like that available for free? Ideally, it would ...
2
votes
4answers
102 views

What kind of tests should I write? [closed]

BACKGROUND I'm writing a little game using Java, slick2d and other frameworks. Slick2d does not make it easy to write unit tests, but that's something I can't get around. One of the goals of the ...
2
votes
2answers
98 views

learning advance concepts in Ruby. Solution?

I am ruby dev and have no background in Java. Recently I got interested in learning advanced concepts of Computer Science (particularly tdd, bdd, algorithms, design patterns). But the materials (at ...
0
votes
2answers
456 views

Experiences on TDD and BDD on java [closed]

I would like to know you experience with TDD & BDD on Java development and which tools you recommend me to start.. I was reading about jbehave but I not sure if it's a good tool to use on my ...

1 2 3 4