JUnit 3 is version 3 of the popular JUnit testing framework for Java
0
votes
1answer
14 views
Androind TestCase Junit3
Im trying to test next code:
public class MessagerTest extends TestCase {
Messager mClassToTest;
Context mArg1;
String mArg2;
protected void setUp() throws Exception {
mClassToTest=new ...
0
votes
0answers
27 views
BadPaddingException with Jasypt library
I am not sure whether this is a bug or I am doing some mistake. In either case, I need help from somebody.
We have incorporated Jasypt along with Spring 2.05 in our web application in which we are ...
0
votes
1answer
73 views
CastClassException Building a test case for a Struts2 Action
I am having trouble getting unit tests built that use the Spring mock framework that comes with Struts 2.3.8. Basically, I have a BaseTestCase that builds the framework. And then individual test ...
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() ...
0
votes
1answer
61 views
Android JUnit and parsing xml data - what to test
I am trying to get more experience on JUnit and its usage in Android.
Referring to this official Android training Parsing XML data I wonder if anyone can provide with an example on how to test some ...
-1
votes
1answer
93 views
How to check if a Java class contains JUnit tests? [duplicate]
I have to check if a certain Class<?> object contains JUnit tests (both JUnit3 and JUnit4).
What is the best way to do that?
0
votes
0answers
86 views
Running JUnit3 style test suite in JUnit4, how to set the “@BeforeClass” and “@AfterClass”
I am running a JUnit3 style test suite(junit.framework.TestSuite) in JUnit4(via org.junit.runners.AllTests)
My code is like this
@RunWith(AllTests.class)
public class MySuite {
public static ...
2
votes
3answers
48 views
Porting JUnit tests from 3.x to 4.x
We have a lot of old unit tests which were written with Junit 3.x. I am tasked with porting them to our JUnit 4.x coding standard, which among things, forbids the use of "extends TestCase".
Some of ...
0
votes
1answer
408 views
Unable to run junit test from command prompt
I'm trying to run a JUnit test case from command lineThe code I followed is set to bin dir
c:/eclipse/workspace/sample/bin> java -cp C:\Ram ...
0
votes
1answer
40 views
junit4 output interpretation
My console output from running JUnit in cmd.exe looks like:
JUnit version 4.10
.....I
Time: 0,469
OK (5 tests)
What does the I on the second line mean?
0
votes
1answer
99 views
Adding a @Test method dynamically to junit test class
We have a text file where a list of search query and the expected result is given. Such as,
Search Result
a:120 result1
b:220 result2
.....
.....
Now, we need to write a ...
0
votes
1answer
165 views
Android unit testing framework that can interact with Google Maps API. Does one exist?
I am working with Google Maps on Android 4.0 and I would like to know:
Is there a testing framework (or anything..) that can interact with the Google Maps API? What are the possibilities when ...
0
votes
0answers
124 views
jUnit trivial test not working after moving to jdk 1.7: Failed tests: warning(junit.framework.TestSuite$1)
Since I moved to jdk 1.7 I cannot build my test.
when i run mvn clean install -e i get the message
Results :
Failed tests:
warning(junit.framework.TestSuite$1)
Here is my test class:
public ...
0
votes
0answers
40 views
How to initialize Android App that requires download for unit testing
I have an Android App that after installation needs to download some additional data and store it on the sdcard. For this purpose on the main screen of the App a Download button is displayed (if the ...
1
vote
2answers
255 views
How to run a single method in a JUnit 4 test class? [duplicate]
I have looked at all the similar questions, but in my opinion, none of them give a solid answer to this. I have a test class (JUnit 4 but also interested in JUnit 3) and I want to run individual test ...
2
votes
0answers
98 views
How to exclude methods from test coverage in EclEmma?
I am using EclEmma plugin for checking test coverage for maven project.
It works, but it gives coverage results based on all the functions in the testing class. As there is some getter, setter and ...
0
votes
2answers
60 views
Mocking a concrete class in junit 3
I have a class which has the following constructor:
class Foo {
Foo (Bar bar) {
...
}
}
I am attempting to write a unit test for this class and Mock out the dependency on Bar. ...
1
vote
1answer
282 views
how to accept input from user in Junit console
I am trying to write Junit test case for the function given below:
class A{
int i;
void set()
{
Scanner in=new Scanner(System.in);
i=in.nextInt();
}
}
Now my problem is when i ...
0
votes
1answer
296 views
java.lang.ClassNotFoundException: junit.framework.TestCase?
In my Lifeary custom portlet i have included one java class in which my custome logic for uploading the media on cloud server is resides.
that java class if i put in one java project then if i run ...
0
votes
2answers
147 views
Junit protected method
I'm new of Junit and testing in Java.
Although I read some articles and other questions in this website which talk about this problem, I'm still wondering about a nice way to deal with a protected ...
1
vote
2answers
93 views
Do we have a @beforeTests method which can run once, before all the tests starts
In Junit, I know there is a @beforeclass , @before annotation, do we have a annotation or design,
allow us to write a method to run ONLY once before the whole testing process?
we have a script, ...
0
votes
1answer
758 views
Should JUnit3 TestSuite really be used like this?
I couldn't recall how to use JUnit3 TestSuite and after some Googling found this
public class MyTestsuite extends TestSuite {
public static Test suite() {
final TestSuite s = new ...
0
votes
1answer
145 views
Is there a performance difference between JUnit3 and JUnit4?
I would like to know if there is a difference in running a JUnit3-Test or a JUnit4-Test. Even if it is just 5-10% improvment on the total runtime, in a big project with nightly builds this could ...
1
vote
1answer
525 views
Android Junit tests not detecting in Robotium
I am trying to run following Android Junit3 test with robotium:
import android.test.ActivityInstrumentationTestCase2;
import com.package.sample.MyActivityClass;
import ...
1
vote
1answer
464 views
Android Unit Test Package Path Errors
I've been plugging along with Android Unit Testing and ran into what appears to be a pathing problem.
First I run this command from my within my project directory
android create test-project -m ../ ...
0
votes
1answer
666 views
Unit Testing Struts2 + Spring action with DAO
I'm trying to unit test struts2 actions (hitting a real database), but I haven't been able to connect to the db successfully.
I'm new to Spring, and the project setup uses jdbctemplate in multiple ...
0
votes
1answer
109 views
Robotium Activity Leak Causing Wrong Activity for other Tests
I am having some issues with my Robotium tests. I have 3 test classes that each have about 2 to 3 methods. They all test different activities in the Android Life Cycle. The problem I am finding is ...
0
votes
2answers
175 views
How do I pass parameters to the tested project?
I have an application that draws random characters from the alphabet and deals with them. I’m new to JUnit and try to use it. I want to test the application by providing predefined characters and ...
0
votes
1answer
232 views
JMock tutorial using JUnit 3?
I'm looking for a JMock tutorial using JUnit 3.
Preferably an easy one as well. Every JMock tutorial I have found has been fairly difficult to read through.
Also, is it worth it to use JUnit 4?
...
1
vote
1answer
2k views
The type junit.framework.TestCase cannot be resolved. It is indirectly referenced from required .class files
I'm following the example here: jMock - getting started
I'm getting this error: The type junit.framework.TestCase cannot be resolved. It is indirectly referenced from required .class files
I've ...
1
vote
1answer
155 views
Junit 3, get data from tests
I want to show some data in my GUI from my tests. I'm using JUnit 3 because other applications that I use are using that one. So if I use JUnit 4 it will collapse. I know that the possibilities in ...
4
votes
1answer
930 views
How to provide data files for android unit tests
I am developing software that loads information from XML files using Android's implementation of java.xml.parsers.DocumentBuilder and DocumentBuilderFactory. I am writing unit tests of my objects and ...
0
votes
1answer
281 views
How to write data driven tests using JUnit 3
I want to create test cases at runtime. The testcases will be created from some excel file and depending upon the values in excel. I know we have @Parametrized in JUnit4 but I cannot use JUnit4. ...
1
vote
2answers
182 views
How can i write a JUNIT of a private function which is returning boolean?
I have written JUnit for a private function which is returning String.
And it is working fine.
public void test2() throws Exception
{
MyHandler handler = new ...
0
votes
1answer
108 views
Junit 3, start testing from a java method
I'm need to use JUnit 3, I know in JUnit 4 there is a method in the API to start the JUnit tests from a normal method in Java (Result r = org.junit.runner.JUnitCore.runClasses(MyTestClass.class)). But ...
3
votes
2answers
1k views
Why is JUnit 4 on Android not working?
as the documentation of Android says, "Note that the Android testing API supports JUnit 3 code style, but not JUnit 4." (Testing Fundamentals). It should be clear that JUnit 4 cannot be used out of ...
2
votes
2answers
667 views
JUnit 3, how to find which tests covered my lines of code? (RTC…maybe?)
The scenario is: I've run JUnit code coverage in eclipse with RTC installed.
I have this view called "Coverage" that I am not sure about, but it seems to show me the code coverage of my JUnit tests. ...
1
vote
1answer
363 views
How to run Junit TestSuites from gradle?
I am trying to migrate from Ant build to Gradle in my project. There are a bunch of test cases (subclasses of junit.framework.TestCase) and few test suites (subclasses of junit.framework.TestSuite). ...
0
votes
1answer
885 views
Android automated testing with Jenkins
Does anyone have a good tutorial for setting up Jenkins to do unit testing for an Android project? I can do unit tests with Eclipse, but I need it for Jenkins.
3
votes
4answers
639 views
Migration: JUnit 3 to JUnit 4: TestSuite
I was recently working with JUnit 3, but I decided to migrate to JUnit 4. Now Im facing the following problem:
I was using a TestSuite with JUnit 3, where I ran all java-Testclasses whose names ...
2
votes
1answer
238 views
Repeating a JUnit3 test
I am using Apache's Surefire JUnit plug-in for maven.
I would like to re-run a test suite in JUnit 3.x. This is possible easily in JUnit 4, which offers the 'Parameterized' annotation.
Do you know ...
1
vote
0answers
277 views
Tests run via maven, and adb, but not IntelliJ - why?
I'm working on a project defined with maven, and I can successfully run the maven script to build the app, and run automated (junit 3.8.2) tests on the device with instrumentation.
Likewise I can ...
0
votes
1answer
177 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
87 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);
...
4
votes
4answers
2k 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 ...
0
votes
1answer
457 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 ...
2
votes
1answer
2k 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..
3
votes
1answer
1k 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");
...
1
vote
0answers
89 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 ...
6
votes
1answer
3k 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...

