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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 11709 - 11738 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11709
... I suppose this is another area where we diverge; I don't use an RDBMS as a simple object store. Thus, my "mappings" between in-memory objects and relations...
Curt Sampson
cjstokyo
Offline Send Email
Aug 1, 2004
9:16 am
11710
I work in an environment that requires that the comment of an assertion be output as well as any data compared, and this must be present for both success and...
jeffvannest
Offline Send Email
Aug 2, 2004
3:40 pm
11711
Hi All, Currently am using WSAD for developing my application and need your help to set up JUnit using the IBM IDE called as WSAD. can anyone help me in this...
junit_user2004
Offline Send Email
Aug 2, 2004
3:40 pm
11712
There is a class which has one public method returning an ArrayList. The public method of this class inturn calls several private methods which are void. These...
rajeshwari_83
Online Now Send Email
Aug 2, 2004
3:41 pm
11713
... You have two problems: 1. The methods you want to test return no value. 2. The methods you want to test are not public. I write about both problems in...
J. B. Rainsberger
nails762
Offline Send Email
Aug 2, 2004
4:07 pm
11714
... Which version of WSAD? As far as I know, there's nothing you need to do. What problems are you having? -- J. B. Rainsberger, Diaspar Software Services ...
J. B. Rainsberger
nails762
Offline Send Email
Aug 2, 2004
4:08 pm
11715
... You need to change Assert to do what you're proposing with JUnit. An alternative is to use Fit/FitNesse for this testing. In case you're not familiar with...
J. B. Rainsberger
nails762
Offline Send Email
Aug 2, 2004
11:53 pm
11716
... Why do you need to test the private methods? Curious, Ilja...
Ilja Preuss
ipreussde
Offline Send Email
Aug 3, 2004
11:19 am
11717
... That's probably the most succinct description of Fit/FitNesse I've seen to date (the home page is *very* vague). T....
Timothy Wall
twall@...
Send Email
Aug 3, 2004
2:51 pm
11718
¦b ¤@, 2004-08-02 18:13, junit_user2004 ¼g¹D¡G ... The WSAD is IBM enhanced version of eclipse. It bundles with JUnit plug in with it. You can use...
Steve Chuang
zombiechuang
Offline Send Email
Aug 3, 2004
4:31 pm
11719
Hi All, we are executing Junit test cases from ANT script. The most of the test cases are passed but few of them failed due to the following error message. ...
barath amarnath
barzenith
Offline Send Email
Aug 4, 2004
2:31 pm
11720
... When the datbase is failing, does the problem occur elsewhere? If so the problem has nothing to do with junit and you should ask in an oracle forum. If...
jinx2
Online Now Send Email
Aug 4, 2004
9:48 pm
11721
I am a JUnit novice as well as a JAVA novice. I have worked with ORACLE (not at the DBA level). Would it ba appropriate to trap this and other specific error...
Clark I Anderson
ciagetjob
Offline Send Email
Aug 4, 2004
11:59 pm
11722
On Wed, 4 Aug 2004 14:59:59 -0600 (MDT), "Clark I Anderson" ... This isn't really a JUnit question. It's a useability question. Only you and your...
Jason Rogers
jacaetev
Offline Send Email
Aug 5, 2004
10:59 am
11723
Hi Rainsberger, Am using WSAD 5.0 and i have already installed my project on it. I dont know how to write test classes for my java files using WSAD. Which plug...
junit_user2004
Offline Send Email
Aug 6, 2004
2:51 pm
11724
Hi, Would anyone know why I'm getting the following error when trying to run one test in Junit? It runs perfectly well under another project (which has a...
djmc112003
Offline Send Email
Aug 6, 2004
2:52 pm
11725
Hi, When we execute a Junit test case,we get the time of execution of that test.Similarly, I want to know, is there any tool which can help me in finding the...
BASAVARAJ.D.KHADABADI
basu_bdk
Offline Send Email
Aug 6, 2004
2:52 pm
11726
When calling an ant-script from a master ant-script in a different directory, junit tests in the original script - accessing files - lose their bearings. The...
khamre
Offline Send Email
Aug 6, 2004
2:52 pm
11727
Hi Dipta, I use Eclipse 3.0 M9 which is very much the same as WSAD. U simply right click on the class for which u want to create a JUnit class and then go to ...
Khurram Chaudhary
uk5kc
Offline Send Email
Aug 6, 2004
5:08 pm
11728
... Do you know that JUnit tests are just Java classes? You could just create a Java class that extends junit.framework.TestCase. Alternatively, try New >...
J. B. Rainsberger
nails762
Offline Send Email
Aug 7, 2004
10:26 pm
11729
... Does the test case class in question define a custom suite() method? If so, that method appears to be throwing an exception. Maybe that's enough ...
J. B. Rainsberger
nails762
Offline Send Email
Aug 7, 2004
10:26 pm
11730
... JUnit is not a profiler. There are a number of profilers for Java, both free and commercial. Google "Java profiler" for details. -- J. B. Rainsberger, ...
J. B. Rainsberger
nails762
Offline Send Email
Aug 7, 2004
10:27 pm
11731
... Pass a parameter/property value when you invoke <antcall>? Since this is an Ant question, and not a JUnit question, you might also look for guidance from...
J. B. Rainsberger
nails762
Offline Send Email
Aug 7, 2004
10:28 pm
11732
... No, no, no, no, no. Eclipse 3.0 is quite different from WSAD 5.0. WSAD 5.0 uses Eclipse 2.1. I believe that only the very most recent point-release of WSAD...
J. B. Rainsberger
nails762
Offline Send Email
Aug 7, 2004
10:29 pm
11733
Hello everybody, We used to test our product(Java based application with complex functionalities, UI, ...) with Silk and WinRunner, but currently our ...
Boris Ayrapetov
boris_ayrapetov
Offline Send Email
Aug 8, 2004
12:13 pm
11734
Hey everybody, When I run junit tests, I get a junit<some really long number>.properties file. What is the purpose of this file? and can the generation of this...
Sadaf_Choudhry
sadafishere
Offline Send Email
Aug 8, 2004
12:13 pm
11735
I wrote up a document about how several free alternatives treat typical issues you might have with UI testing, but you can extrapolate based on your...
Timothy Wall
twall@...
Send Email
Aug 8, 2004
8:00 pm
11736
Dear I created for our project a factory returning say about 10 classes implementing the same interface.I wanted to test the factory & the instances returned...
Thomas SMETS
smetsthomas
Online Now Send Email
Aug 9, 2004
2:18 pm
11737
... Perhaps, now that the "developer testing" usage has been blessed (with proper casing, no less !-) the community can acknowledge that developers can...
Thomas L Roche
tlroche
Offline Send Email
Aug 9, 2004
3:03 pm
11738
... This bothers me, only because we've been pushing the term "Programmer Testing", and now, rather than collide with "unit testing", it has to collide with...
J. B. Rainsberger
nails762
Offline Send Email
Aug 9, 2004
3:10 pm
Messages 11709 - 11738 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