Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

junit · JUnit, the Java unit testing framework written by Kent Beck and Erich Gamma.

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 31225
  • Category: Java
  • Founded: Nov 6, 2000
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

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

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