Version 4 of the popular Junit Java Unit testing framework

learn more… | top users | synonyms

0
votes
0answers
11 views

Struts2.3.14 with junit4

Im using Struts2.3.14 and junit4 for my application... When i run junit im getting nullpointer exception... please help me to improvre... my junit code is public void testExecute() throws ...
0
votes
0answers
11 views

Strruts2.3.14 junit test

Im using Struts 2.3.14 for my application... i need some unit test in my application... so im using junit4... but when i use ActionProxy in my test, it will show nullpointer exception... my test ...
2
votes
1answer
21 views

Can I apply a time limit for all the tests in the suite

Is there a way in JUnit to define a global timeout/limit for all the tests included in the suite. Well, let me to explain this a little. I want to introduce a junit test suite into the build system ...
0
votes
0answers
13 views

Play 2 - Tests NOT run when annotated with PowerMockRunner

We are facing a weird issue with Play framework and PowerMockRunner combination. As you can see the below example is a dummy one to simulate the issue. JUnit Test Using PowerMockRunner package ...
0
votes
0answers
8 views

Getting error while writing sample junit program using ANT

I am new to Junit test. I am writing a test application by following below link - http://acs.lbl.gov/~ksb/Scratch/jajucc_hw.html Here is my build script - <project name="hello" default="dist" ...
1
vote
3answers
26 views

Finding a file in a root directory of jar exported from Eclipse for JUNIT testing

In my Eclipse JUNIT test I have several text input files that are opened by new BufferedReader(new FileReader(inputFileName));. They are placed in the root directory of the project After ...
0
votes
1answer
19 views

How to identify and run the JUnit test cases dynamically againest the multipledata sets corresponding to each test

I have a data configured in Excel Sheet. Excel sheet name is equal to Test Class Name and first Sheet Contains testMethods and correspoing data sheetnames. i have constucted a Map>> object is like ...
0
votes
0answers
29 views

Mockito + PowerMock LinkageError while mocking system class

I've got such a code snippet: @RunWith(PowerMockRunner.class) @PrepareForTest({Thread.class}) public class AllMeasuresDataTest { @Before public void setUp() throws Exception { } @Test public void ...
0
votes
1answer
25 views

Configuration error [driver not found: ] while creating a junit test in Intellij and using Play framework 2

I am trying to do unit tests, i am using junit and intellij and play framework 2.0.4. My test is like this: public class ModelsTest { @Test public void retrieveUser(){ ...
0
votes
1answer
30 views

Unable to mock GAE userservice

I am trying to mock the gae user service for writing unit tests and couldn't get the following code to work. My test class is as below. public class AuthenticationTest { private final ...
0
votes
0answers
16 views

junit4 in debug mode bringing up 'sources not found' for org.junit.runners

I have a 'Sources not found' issue whist running junit4 tests in debug mode for some java code I've written. My programming experience is quite basic and I'm using junit4 to write and run selenium ...
1
vote
3answers
87 views

how to clear browser cache automatically in selenium webdriver?

How to clear browser cache before every test run? I tried with driver.manage().deleteAllCookies(); in setUp method after creating the driver instance, it is working for firefox, but for IE no use. Is ...
0
votes
1answer
33 views

JUnit4 test case won't continue

I created a test suite with 2 test cases using Selenium IDE. I exported the suite as Java/JUnit4/WebDriver. the first test case allow user to log-in the site, do a member search after the match is ...
0
votes
2answers
22 views

Compiling Java classes in linux via command line

Hi and thanks for taking the time to answer my questions. I have two files in my root folder (~/). The Main.Java and TestMain.java. Main.java compiles and runs smoothly. TestMain on the other hand ...
0
votes
1answer
25 views

Cannot display debug info from @Ignore

I tested to display some debug info using the @Ignore annotation: import javax.naming.Context; import javax.naming.InitialContext; import javax.naming.NamingException; import ...
0
votes
1answer
36 views

GAE LocalDatastoreServiceTestConfig and Spring MVC Unit Tests

I'm developing an application with Spring MVC (3.2.2) and GAE (1.7.7) and I'm having some issues with the LocalDatastoreServiceTestConfig and my JUnit tests. I have an number of Service layer unit ...
0
votes
0answers
20 views

Junits printing log message twice in eclipse as well as console

in our project we are using junit to write junit test cases, whenever any test is run the log messages in respective classes are logged twice. This behavior is weird, s message should appear only ...
0
votes
2answers
37 views

Null Pointer when running Junit4 with Struts 2.3.12 and Spring 3.1.1

I am trying to develop JUnit4 test scripts for our application that uses Spring 3.2.2 and Struts 2.3.12. I think I am close to getting this working but for some reason when executeAction is called ...
0
votes
0answers
125 views

How to handle SSL errors for chrome and internet explorer in selenium Webdriver testing?

How we can handle SSL certificate errors for chrome and internet explorer with selenium web driver. When I am working with Firefox it is working fine. Could you please provide me the solution to ...
2
votes
0answers
50 views

Mocking Static Methods with PowerMockito on Android

I'm trying to stub out a static method so that I can unit test a REST Api interface. I'm using... PowerMockito 1.5 (to enable mocking of statics) Roboelectric 1.2 (to stub out the rest of the ...
4
votes
1answer
60 views

Ehcache shutdown causing an exception while running test suite

I'm experiencing the following problem. I have a test suit in my project and each individual test runs fine. However when I run them as a suite I some of them fails with the following exception: ...
0
votes
0answers
32 views

why quartz example code can't be tested in Junit?

I am running this quartz-2.1.0\examples\src\main\java\org\quartz\examples\example3 sample code, it runs very well, but if I move the main code in CronTriggerExample.java to a junit test class, the job ...
0
votes
0answers
18 views

Spring junit error single matching bean but found 2

I have a test class, and have created a java config class to use with this class.. But im having issues as other tests seem to throw up found two instances of bean in configuration... my test class: ...
3
votes
4answers
110 views

Junit - Writing a single Unit Test for multiple implementations of an interface

I have an interface List whose implementations include Singly Linked List, Doubly, Circular etc. The unit tests I wrote for Singly should do good for most of Doubly as well as Circular and any other ...
0
votes
1answer
68 views

Selenium Scripts on the command line

Is there any way to run selenium webdriver tests scripts from the command line that have been written using Java and JUnit through Eclipse IDE? I've been trying to use Ant or Maven but I can't get it ...
0
votes
1answer
77 views

Running TestSuite in JUnit4 and Maven

I am integrating an external junit.framework.TestSuite into my library which is built using Maven and JUnit4. The typical tests, if not all of them, are kicked off using JUnit4 annotations. How do I ...
0
votes
1answer
22 views

Testing JPA java.lang.ClassNotFoundException: play.db.jpa.JPABase

Im trying to test my JPA entities and have been following this tutorial: http://eskatos.wordpress.com/2007/10/15/unit-test-jpa-entities-with-in-memory-database/ I have a tests running so far and ...
0
votes
1answer
96 views

Play 2 - Zentask Java Tutorial - jUnit ebean test failure

Solution: you dont need IDE for testing, just run "play test" in the console Good Evening! I just started to get into Play Framework, I worked with jUnit before and also used testing in ...
0
votes
3answers
66 views

Eclipse Run As doesn't show Junit or testNG option

I am trying to execute a simple test case using Junit4 in Eclipse (version 3.7.0) 1) I click on the Run icon (next to the debug icon), then click on the Run As option, it only shows Java Application ...
0
votes
0answers
54 views

Spring Data MongoDB: Unit tests with repositories

How is it supposed to build some tests with the repository approach in Spring Data MongoDB? I would like to set the test database for my tests since I don't want to use the production database for ...
1
vote
1answer
31 views

Mocking static method that is called multiple times

I have a static method, that is used in multiple places, mostly in static initialization block. It takes a Class object as parameter, and returns the class's instance. I want to mock this static ...
0
votes
1answer
170 views

How can i use my Junit test (selenium webdriver) with Jmeter

I created my functional tests with JUnit 4 and Selenium Webdriver and it works. Now I want to use this test with JMeter for performance tests. I copied selenium-server-standalone-2.0b2.jar at ...
0
votes
1answer
113 views

Expected Exception JUNIT

i want to add an object in DB than check if the object is already there so we can't add it twice. I used JUNIT to test it: @org.junit.Test (expected = ExistingProduct.class) public void AddExisting() ...
-2
votes
0answers
19 views

Making a movie but selecting random clips. [closed]

I am trying to create a movie by selecting random clips from my device/my cloud. What is the command I should give. I need to run tests on selenium web driver using Junit4. Thanks!
1
vote
1answer
65 views

JUnit test hangs

I have the following problem. One of my JUnit tests gets stuck in eclipse doing nothing, but the blue arrow indicating that this test is currently running persists. It is definitely no infinite loop ...
0
votes
2answers
240 views

selenium Webdriver can't even execute the click() function

I'm facing an issue in using Selenium WebDriver. I'm a fully beginner in Selenium WebDriver so excuse me in advance. I've followed step by step somme explanations by creating a simple webdriver test ...
2
votes
1answer
50 views

Character encoding in IDEA output of AssertionError

I am using IntelliJ IDEA 12.0.4. Have some tests. When i'm running one using JUnit4 framework my Assertion Error looks like: java.lang.AssertionError: Status should be: Черновик expected [true] but ...
0
votes
1answer
132 views

JUnit and Maven build fails in eclipse with java.lang.NoSuchFieldError: address?

When I try and run either JUnit (4.8.2) tests or a maven (2.2.1) build in my local eclipse I get the following error: JUnit 4.8.2 java.lang.NoSuchFieldError: address at ...
1
vote
0answers
50 views

Maven build runs when I run a Unit test in eclipse

I have a maven project. I am trying to run a single test in maven command line and that works fine. I am trying to debug that test in eclipse and using -Dmaven.surefire.debug option and starting a ...
3
votes
2answers
472 views

running selenium webdriver test cases against multiple browsers

I am new to selenium testing. I want to run selenium test cases on multiple browsers against internet explorer, Firefox, opera and chrome. What approach i have to follow. Can you people please suggest ...
1
vote
1answer
26 views

How to automatically create a list for @SuiteClasses

I need a possibility to run a subset of my JUnit tests cases during Maven build process. I've decided to use JUnit categories for this purposes. I've created two marker interfaces: UnitTest and ...
0
votes
0answers
32 views

Explain this JUnit Groovy error related to TypeChecked annotation?

When I enable Groovy Type Checking Extensions on my JUnit project, it fails with this error that is hard to understand. The test runs fine if I don't enable the TypeChecked annotation but fails when ...
4
votes
1answer
51 views

How to test whether a method has been overriden in junit?

I have this question, is there a test annotation or assertion which can tell if a method has been overriden in junit? I'm currently implementing a test case which should tell whether the class Foo's ...
0
votes
3answers
95 views

Using JUnit on code that terminates [duplicate]

I am trying to test a given java application, and for that purpose I want to use JUnit. The problem I am facing is the following: Once the code I am trying to test finishes its work, its calling ...
1
vote
3answers
118 views

How make JUnit to print asserts and results

I have some tests like this: @Test public void test01() { Position p = getPositionAt('a', 1); assertNotNull("a1 exists", p); assertNotNull("figure exists a1", p.getFigure()); p = ...
0
votes
0answers
15 views

EasyMock : Is Mocked object visible to the all the tests?

I have created a mocked object in a particular junit test case with the expectation that it should be called only once; but it seems it is visible across all the tests run together, failing with the ...
0
votes
1answer
71 views

open source web application with junit Testing?

We are thinking of using junit testing in our next spring MVC based web applications. But no one in the team has any prior experience in the junit testing. Offcourse we have read some online junit ...
0
votes
0answers
41 views

How to run this unittest script in jruby

How to run this unittest script in jruby? The unittest framework i used is junit4. #encoding:utf-8 require 'jruby/core_ext' require 'junit.jar' require 'jruby/core_ext' require 'hamcrest.jar' ...
0
votes
0answers
32 views

Netbeans 7 Gradle and JUnit 4

I made a single app gradle project from the wizard in netbeans. The wizard made the conventional project structure. I made a sample class in a package. I right clicked the class, and made a junit test ...
0
votes
1answer
39 views

How i can get the method in the setup method in spock?

how i can get the method of the running feature? I want to prepare the database with different datasets. This datasets should be defined with annotations like this: @PrepareDB("dataset1") def ...

1 2 3 4 5 19