Hi, I am trying to implement JUnit for my project. I ran the sample testcased in my machine. But, while I am integrating with my project I am getting the...
I m using junit & facing a problem , when i run junit by rnning this command: java junit.swingui.TestRunner test (test) is the name of my testcase then it is...
Hi all, I know, JUnit 'unit' tests should always pass ;-) But we are using the JUnit framework to write integration and systemtests as well. So from time to...
I don't know of anything like this. Writing a tool like this is on my "to do" list at work, but there are about 60 things above it, so don't hold your breath....
... This doesn't look like a JUnit issue, but rather something in your code that needs to be initialized but isn't (the ORB). You can put initialization...
Klaus, I wrote a hack for something like this a while ago, but it was optimized for looking at failing tests over hundreds of program versions, parsed from...
kp.berg, ... In the Maven world, there's a plugin called Maven Historical Data (http://mavenhistorical.sourceforge.net) that sounds like it would meet at least...
Hi Klaus, There is a tool namely QALAB which is used to pick info from XML files and generate so called Movers and Shakers of build. You want to have a look at...
I'm fairly new to Junit, and am using it with Eclipse (on Windows XP). I'm having problems running a simple JUnit test case. I have tried searching Google and...
... It looks like your Network class references the class org.apache.commons.collections.Predicate and that class is not on the classpath. Add it's jar to the...
Hi, if looking at QALAB I found "This project collects and consolidate data from several QA tools, like pmd, checkstyle, FindBugs and Simian and keeps track of...
Hi David, I have started to write a tool by myself. I'm parsing the junitreport XML file generated by ant using Castor. Castor is also used as a JDO/OR-mapping...
Hi Gareth, IMO there is nothing special in testing JTables. I think it's like testing other Swing GUI components. The first step is to select the "right" Swing...
Its easier enough to test your JTableModel implementing class, leave the JTable UI part as is - it works and you don't have to code anything other than its...
Hi Gareth, In general, there are two kinds of automation involved on any JComponent. They are: (i) automating the functionality using API methods and JUnit and...
Hi Klaus, I know that it currently doesn't support JUnit trends. All that I could say is either customize it for JUnits with added benefits it currently has to...
... Bill Wake created a simple example which demonstrates how to get started, and it's an interesting exercise in itself. http://www.xp123.com/xplor/xp0201/ ...
I didn't get your problem exactly, though i thought following thing would help you. If temp_phone is a hidden element. then form.temp_phone.value = '123456' ...
Hi all, I am new to this Junit I know very little. I work in a maintenance project. I want to know if junit can be used to generate the test cases for a...
Maru, JUnit can certainly be used to write tests for maintenance projects. An excellent book for thinking about this situation is Working Effectively with...
First, I am a fresh man in Junit. When I install junit, something wrong happened as follows: After I type java junit.awtui.TestRunner junit.samples.AllTests A...
hi, Can any one tell me where can i get the source code for junit.jar I mean the java files . I want to use the source code in eclipse for debugging . ...
I have only done small amounts of work with HTTPUnit, so my memory about how it worked is a little limited. In my answer, I will presume that you set the...
Sayali, The JUnit source ships with Eclipse. Right-click the jar in your project, choose Properties, and then Java Source Location. In my Eclipse, the...