The junit tag has no wiki summary.
2
votes
5answers
358 views
Unit test cases(JUnit), not by developer but other team members
I have a very interesting situation. Management has strictly asked to do unit testing for the code being developed and divided the task in such a way that few are developing the code and others are ...
1
vote
1answer
113 views
JUnitEE vs JUnit
I know what unit testing is in general and what JUnit is in particular. But here I see that there is a project called JUnitEE which seems to me to be a wrapper over JUnit. So I would like to better ...
1
vote
3answers
321 views
How to write junit test case for the program [closed]
I have a method which has external dependencies within the method. Please help me in writing a junit test case for the below program.
@Override
public void methodToTest(String user){
...
6
votes
3answers
507 views
Mocking concrete class - Not recommended
I've just read an excerpt of "Growing Object-Oriented Software" book which explains some reasons why mocking concrete class is not recommended.
Here some sample code of a unit-test for the ...
2
votes
3answers
388 views
How to test Java web applications
So far I haven't been testing or learning how to test my java web applications.
If you do, what are the tools you need, and is it really necessary to test a web application if doesn't need scaling or ...
1
vote
2answers
280 views
Submitting Java Code with Junit unit test
I have mostly worked on simple java programs and compiled and run them with Eclipse on Windows. So, I have no experience of using command prompt for compiling Java projects and do not have much info ...
2
votes
3answers
107 views
Should I care about Junit redundancy when using setUp() with @Before annotation?
Even though developers have switched from junit 3.x to 4.x I still see the
following 99% of the time:
@Before
public void setUp(){/*some setup code*/}
@After
public void tearDown(){/*some clean up ...
4
votes
3answers
376 views
Jenkins without Automated Tests
I know that Jenkins is focused on continous building/testing, monitoring of batch jobs about the project. We have a legacy project which such condition :
1)Has a development team.
2)It has SVN for ...
4
votes
2answers
160 views
Shipping test code as a form of sanity check
Have you ever shipped test code (JUnit, NUnit etc) with your application that could be runnable by the end-user ?
Basic Idea is this :
The application can be deployed in a varied environment and it ...
1
vote
2answers
408 views
A good code coverage framework for groovy/java?
Currently, I am working on a very complex product. Unit testing is something unknown to this product till date. Hence the code base is too complex to keep it compatible with unit tests. I am supposed ...
18
votes
4answers
793 views
How to drastically improve code coverage?
I'm tasked with getting a legacy application under unit test. First some background about the application: It's a 600k LOC Java RCP code base with these major problems
massive code duplication
no ...
7
votes
3answers
461 views
What elements of my JUnits should I mock?
My classes are following this structure
Service Tier (creates and maps InputDTO to DB Data) ->
DAO Tier (actually executes DB calls)
When I write the service tier JUnits, and when it calls DAO ...
2
votes
1answer
145 views
Is there canonical jUnit reference documentation?
I can't seem to find any kind of complete reference for jUnit. The only way I've managed to find to know about all the features in jUnit is to check out all the release notes for it.
For example ...