Tagged Questions
JUnit 3 is version 3 of the popular JUnit testing framework for Java
7
votes
6answers
2k views
setUp/tearDown (@Before/@After) why we need them in JUnit?
I believe that we are all know that setUp (@Before) will execute before any test method and tearDown(@After) will execute after test method.
Also we know that Junit will create one instance of Test ...
5
votes
1answer
1k views
Specifying an order to junit 4 tests at the Method level (not class level)
I know this is bad practice, but it needs to be done, or I'll need to switch to testng. Is there a way, similar to JUnit 3's testSuite, to specify the order of the tests to be run in a class?
Thanks ...
4
votes
1answer
5k views
Maven 2 Not Running Junit 4 Tests
I'm having an issue getting surefire to run Junit4 tests. This same issue was reported in http://stackoverflow.com/questions/2021771?sort=newest#sort-top but the solution there was to removed the ...
3
votes
4answers
256 views
How can I get @BeforeClass and @AfterClass equivalent in Junit3?
I want to back up my application's database before replacing it with the test fixture. I'm forced to use Junit3 because of Android limitations, and I want to implement the equivalent behavior of ...
3
votes
1answer
861 views
Unable to run simple JUnit TestCase on old version of JUnit
I'm attempting to run a simple JUnit test case on version 3.7 of JUnit (I'm not able to upgrade this to the latest version)
Running IntelliJ, I get the following exception when I attempt to run my ...
3
votes
4answers
339 views
Running lots of tests causes Eclipse to freeze, continue freeze etc
I have noticed that executing large mostly Junit 3.x test suites, causes Eclipse to shititself and lockup. Even when i allocate a lot of heap and perm gen (1200m and 400m) it hums along and then just ...
2
votes
1answer
563 views
what is the difference between Junit 3, Junit 4, TestNG
what is the difference between JUnit 3, JUnit 4, TestNG in selenium how selenium is implemented differently in these three testing frameworks?
Can any one explain clearly..
Thanks in Advance..
2
votes
0answers
248 views
Calling test from another class of selenium in java
This is my method which call a function from another class
Selenium Setup is defined hear.
public void Transfer() throws Exception {
System.out.println("\nTransfer\n");
...
2
votes
1answer
38 views
I want to execute few selected test cases from my class of multiple test cases using Junit3 with ease
As my 1-2 test cases are failing from bunch of test cases and also finding difficult to execute whole test suite again for these two, is there any method without adding comment to the others or ...
2
votes
1answer
190 views
Android - testing if another activity has started
I am trying to test the following scenario, enter a letter in the autocomplete textview, scroll down and select one of the options, then click a button, The button click starts a new activity. I want ...
2
votes
2answers
353 views
How can I have the Ant JUnit task run all tests and then stop the rest of the build if any test has failed
I'm running JUnit via Ant using a target something like this:
<target name="junit" depends="compile">
<mkdir dir="${report.dir}"/>
<junit printsummary="yes" haltonfailure="yes" ...
2
votes
3answers
352 views
JUnit Exception Testing
Edit: Not JUnit 4 available at this time.
Hi there,
I have a question about "smart" exception testing with JUnit. At this time, I do it like this:
public void testGet() {
SoundFileManager sfm ...
1
vote
0answers
48 views
how to get the next sequence number . in the confirmation message in Junit with selenium
i m using the verification for the text as verifyEquals("Successful Submit:Sequence Number: 911537\n ); but the sequence number keeps on updating on each run.
Can anybody suggest as how to verify ...
1
vote
3answers
2k views
Maven 3 and JUnit 4 compilation problem: package org.junit does not exist
I am trying to build a simple Java project with Maven. In my pom-file I declare JUnit 4.8.2 as the only dependency. Still Maven insists on using JUnit version 3.8.1. How do I fix it?
The problem ...
1
vote
2answers
164 views
How to run a simple JUnit test in eclipse
So here's my code:
package tests;
import junit.framework.Test;
import junit.framework.TestCase;
import junit.framework.TestSuite;
class StatementTester extends TestCase {
public ...
1
vote
0answers
199 views
Using junit under Android with Eclipse
I'm trying to use junit to test some classes I'm writing in a project. The problem is that I can't see any failure event if the test testNull is a assertEquals(new Integer(1), null). This is the ...
1
vote
2answers
397 views
Junit 3 to JUnit 4 conversion
I had the following version of a test in JUnit 3, and I tried converting it into JUnit 4, with no success. The idea is to have a base test case, that does the actual test of an interface, say Service ...
1
vote
2answers
560 views
JUnit3 and Junit4 XML Reports with Maven
I am trying to figure out how to use the supposed reporting capabilities of JUnit (3 and 4) in conjunction with Maven, but Google searches aren't turning up much in the way of how to actually run ...
0
votes
0answers
71 views
Issue with JUnit
I am using JUnit 3.
The class say A that I am trying to test refers to some other class say B. I have generated test class using the eclipse wizard. I am also able to run the test class through ...
0
votes
1answer
30 views
Specify test method name prefix for test suite in junit 3
Is it possible to tell JUnit 3 to use additional method name prefix when looking up test method names?
The goal is to have additional tests running locally that should not be run on continuous ...
0
votes
1answer
28 views
A query on Junit test methods
public void testNullsInName() {
fail("sample failure");
Person p = new Person(null, "lastName");
assertEquals("lastName", p.getFullName());
p = new Person("Tanner", null);
...
0
votes
1answer
150 views
Junit Tests returning as Unrooted Tests
I've similar questions asked on this site, but this is a bit of a different scenario than what I have seen.
We have a PC client execute JUnit 4 tests. However, we have a custom test runner that ships ...
0
votes
1answer
151 views
The differences between JUnit 3 and JUnit 4 [closed]
Could someone describe in a few words what the main differences between JUnit 3 and 4 are?
Thanks in advance...
0
votes
1answer
83 views
testing java ee 6 with junit 3
I have a short question: Can I test java ee 6 with junit 3, or do I have to use JUnit 4?
0
votes
1answer
49 views
Ant JUnit Compile Q
i found this code snippet:
<target name="test">
<junit fork="yes" haltonfailure="yes">
<test name="${classes}" />
<formatter type="plain" usefile="false" />
...
0
votes
2answers
450 views
Error when defining inner classes in a Test class in JUnit
I'm having some problems when defining inner classes in a Test class inherited from TestCase, for JUnit 3. Scenario is like following:
Foo.java
public class Foo {
public void method() { ... }
}
...
0
votes
1answer
449 views
jUnit testing Database operations
I'm developing an Android application with database storage.
I want to test some classes that I use to access database.
I've found ActivityInstrumentationTestCase2 to test Activities but I haven't ...
0
votes
1answer
112 views
Junit Dynamically Created Tests Not Working
public class NewTest extends SeleneseTestCase {
public static Test suite() throws Exception
{
TestSuite suite = new TestSuite();
TestSuite s = new TestSuite("TestCase Name");
...
0
votes
1answer
298 views
Mocking inside a Java class
So I have this GWT code that handles RPC requests maintain states(ready, waiting, error etc).
And I would like to check if the class change its states correctly after each call, set response variables ...