Search the web
Sign In
New User? Sign Up
junit · JUnit, the Java unit testing framework written by Kent Beck and Erich Gamma.
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 15725 - 15754 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
15725
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...
Madhavan Chandrasekaran
madhan_chandru
Offline Send Email
Jan 4, 2006
10:49 pm
15726
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...
aptsadi
Offline Send Email
Jan 4, 2006
10:52 pm
15727
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...
kp.berg
Offline Send Email
Jan 4, 2006
10:53 pm
15728
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....
Bradley, Todd
todd404
Offline Send Email
Jan 4, 2006
11:41 pm
15729
... 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...
Daryl Richter
n_going_zax
Offline Send Email
Jan 5, 2006
12:07 pm
15730
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...
David Saff
dsaff
Offline Send Email
Jan 5, 2006
1:41 pm
15731
Vivek, I don't think anyone's answered yet, and I'm stumped. Did you get an answer on the httpunit mailing list? Good luck, David Saff...
David Saff
dsaff
Offline Send Email
Jan 5, 2006
1:54 pm
15732
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...
jason r tibbetts
tibbettj_at_...
Offline Send Email
Jan 5, 2006
3:03 pm
15733
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...
sachin.dholakia@...
sachin_nd
Offline Send Email
Jan 5, 2006
3:54 pm
15734
... Thanks for that tip! That looks even better than the Maven Historical plugin that I recommended in another response....
jason r tibbetts
tibbettj_at_...
Offline Send Email
Jan 5, 2006
6:03 pm
15735
... files and ... look at ... optimized ... parsed ... interesting ... Is there such a tool for eclipse/perforce?...
kamal2222ahmed
Offline Send Email
Jan 5, 2006
7:06 pm
15736
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...
samanthaclark
Offline Send Email
Jan 5, 2006
7:09 pm
15737
... The problem /isn't/ with JUnit. Something else requires the Apache Commons Collections library, which you can download from ...
jason r tibbetts
tibbettj_at_...
Offline Send Email
Jan 5, 2006
8:14 pm
15738
... 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...
Daryl Richter
n_going_zax
Offline Send Email
Jan 6, 2006
1:37 pm
15739
Hi, Does anyone have a useful strategy for applying JUnit tests for Swing JTables? Many thanks in advance, Gareth...
ni0270
Offline Send Email
Jan 8, 2006
4:36 am
15740
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...
kp.berg
Offline Send Email
Jan 8, 2006
4:01 pm
15741
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...
kp.berg
Offline Send Email
Jan 8, 2006
4:02 pm
15742
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...
kp.berg
Offline Send Email
Jan 8, 2006
4:02 pm
15743
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...
Andrew McDonagh
andy_ipaccess
Offline Send Email
Jan 8, 2006
4:47 pm
15744
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...
saldin samuel
saldin_s
Offline Send Email
Jan 8, 2006
7:05 pm
15745
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...
sachin.dholakia@...
sachin_nd
Offline Send Email
Jan 9, 2006
7:46 am
15746
... 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/ ...
James Abley
taboozizi
Offline Send Email
Jan 9, 2006
2:43 pm
15747
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' ...
Maruthi Kusoji
maruthi_kn
Offline Send Email
Jan 9, 2006
8:05 pm
15748
... I'd add a third: using a half-automatic tool like JDemo for exploratory/usability testing. Cheers, Ilja...
Ilja Preuss
ipreussde
Offline Send Email
Jan 10, 2006
12:42 pm
15749
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...
Maruthi Kusoji
maruthi_kn
Offline Send Email
Jan 11, 2006
1:30 pm
15750
Maru, JUnit can certainly be used to write tests for maintenance projects. An excellent book for thinking about this situation is Working Effectively with...
David Saff
dsaff
Offline Send Email
Jan 11, 2006
4:03 pm
15751
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...
hdpoliya
Offline Send Email
Jan 11, 2006
11:29 pm
15752
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 . ...
sayali_mani
Offline Send Email
Jan 11, 2006
11:31 pm
15753
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...
code_poetry
Offline Send Email
Jan 11, 2006
11:32 pm
15754
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...
David Saff
dsaff
Offline Send Email
Jan 12, 2006
12:56 am
Messages 15725 - 15754 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help