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...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 20471 - 20500 of 22044   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
20471
Welcome everyone, I am new here and hope that this is the right place to announce a novel JUnit extensions. If not, please point us to the proper place. ...
adrian.kuhn
Offline Send Email
May 4, 2008
8:37 am
20472
Hi Adrian, Interesting approach... I have two remarks: 1) I find it a bit odd that inside a class Stack, you find yourself creating a brand new instance of...
Cédric Beust 
cbeust
Offline Send Email
May 4, 2008
2:56 pm
20473
Hi, I am launching JUnit through Ant, and I get the following error: [junit] X Error: BadDevice, invalid or uninitialized input device 171 [junit] Major...
fdmanana
Offline Send Email
May 6, 2008
12:45 pm
20474
Hello Cédric, Thank you for your comments! ... I am not sure if I completly understood that remark. But, let me quickly explain what happens behinde the...
adrian.kuhn
Offline Send Email
May 6, 2008
12:45 pm
20475
Hi to all i am new to this Junit testing my test case code is package library.unit.testing; import servletunit.struts.MockStrutsTestCase; public class...
HelpMePlz
nirmala_pelluru
Offline Send Email
May 6, 2008
9:13 pm
20476
Hi I just try to do some first steps with junit. Despite of all the tutorials, blogposts, etc. it seems impossible to me. Here's what I want to do: 1. writing...
ben.aurel
Offline Send Email
May 7, 2008
2:51 am
20477
You need to add the directory containing your compiled classes to the classpath. --Nat...
Nat Pryce
nat_pryce
Offline Send Email
May 7, 2008
6:54 am
20478
Also, note that specifying -classpath will override the environment variable CLASSPATH, so you need to drop that from your java command as well. ... -- Jan...
Jan Kroeze
thejcwk
Offline Send Email
May 7, 2008
8:15 am
20479
Hi Adrian, This looks interesting. when I was experimenting with JUnit 4.4 theories I often found myself in the situation where I tested "datapoints" with...
Joakim Ohlrogge
j0hlrogge
Offline Send Email
May 8, 2008
6:57 am
20480
... Hi, We don't have enough information there to help. Here are some suggestions that may help: * Can you run it in an IDE? * Can you run it via the CLI? *...
James Abley
taboozizi
Offline Send Email
May 8, 2008
7:07 am
20481
hi I have some another basic questions on my quest for a "professional" java environment with JUnit... I'm working on Mac OS X and I try to find out how...
ben.aurel
Offline Send Email
May 10, 2008
2:49 pm
20482
thanks the reference to the class location (.) helped.. ... variable ... to the ... SimpleTest...
ben.aurel
Offline Send Email
May 10, 2008
2:49 pm
20483
I install the JDK in wherever the installer or package manager puts it by default, and set up environment variables (esp. the PATH, but also JAVA_HOME and...
Nat Pryce
nat_pryce
Offline Send Email
May 10, 2008
2:57 pm
20484
... Default OS X software install. export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home ... Most open source libraries are already...
Wendy Smoak
wendysmoak
Offline Send Email
May 10, 2008
2:58 pm
20485
Hi, I'm using JUnit on windows systems. The several Java-RTs und SDKs I usually install on %program files%\java \j2rt1.4 \j2se1.4.2 \jdk1.5 \jdk1.6 \j2me For...
Böhm, Martin
martinboehms...
Offline Send Email
May 15, 2008
7:48 am
20486
... You already got some suggestions for where to install java and where to put JUnit. I can't remeber when I last run JUnit from the commandline... so... The...
Joakim Ohlrogge
j0hlrogge
Offline Send Email
May 15, 2008
10:59 am
20487
thanks for your answers! A few people here refer to maven as their library management tool. So far I thought of maven as a extension to ant. Could somebody...
ben.aurel
Offline Send Email
May 17, 2008
6:05 pm
20488
JUnit is not "installed" with Maven in the traditional sense. Instead, Maven automatically downloads the JUnit jars (and other jars that your application...
Wayne Fay
jaeger321
Offline Send Email
May 18, 2008
12:26 am
20489
Brought to you by StickyMinds.com and Better Software magazine * Sponsored by Telelogic * As organizations struggle with financial management and fewer...
Megan Brown
meganole25
Offline Send Email
May 22, 2008
5:58 am
20490
Hi.. I took the Junit 4.4 source code from http://sourceforge.net/project/showfiles.php?group_id=15278. When I try to rebuild it gives compiler error for ...
mailtoshubha
Offline Send Email
May 22, 2008
2:31 pm
20491
junit4.4 TestRunListener.java package junit.runner; /** * A listener interface for observing the * execution of a test run. Unlike TestListener, * this...
zengcaihui198627
zengcaihui19...
Offline Send Email
May 24, 2008
8:15 am
20492
Well, just from looking at the method signatures, I'd guess that the "testRun*" methods are called for a suite of tests, where the "test*" methods are called...
Ilja Preuss
ipreussde
Offline Send Email
May 24, 2008
8:51 pm
20493
Hi, I'm new in JUnit, and I'm looking for an extention for JUnit 4 that permits automated distributed testing of distributed systems and applications like...
mchollgarcia
Offline Send Email
May 26, 2008
6:21 pm
20494
I tried to upgrade 2 test classes into annotateted tests by changing public void testXXX() into import org.junit.Test; ... @Test public void XXX() One test...
Jo
jfp_k
Offline Send Email
May 26, 2008
6:22 pm
20495
... testRunStarted() - Called before any tests have been run. testStarted() - Called when an atomic test is about to be started. testRunEndedand() and...
toalexsmail
Offline Send Email
May 26, 2008
6:22 pm
20496
In the meantime someone else pointed out the problem: I should no longer subclass TestCase. Then I saw myself I forgot to remove the test prefix of one...
J. Falkink
jfp_k
Offline Send Email
May 27, 2008
1:57 am
20497
Hi JUnit:ers! The simplest way of checking that no tests in a suite depend on network access is of course to simply pull the network cord and see which tests ...
martin_erlandsson
martin_erlan...
Offline Send Email
May 29, 2008
10:11 am
20498
It sounds like you may be looking for this: http://docs.codehaus.org/display/ASH/Home But I'm not sure. Hope this helps. /Joakim Ohlrogge...
Joakim Ohlrogge
j0hlrogge
Offline Send Email
May 29, 2008
10:30 am
20499
You can run your program with a policy file that disallows access to the file system. Why do you want to check whether your tests depend having disk access, if...
Jan Kroeze
thejcwk
Offline Send Email
May 29, 2008
3:04 pm
20500
Thank you Joakim, Really good idea to use a SecurityManager to control the unit test runs. Never thought about that before! The project has not been touched...
martin_erlandsson
martin_erlan...
Offline Send Email
May 29, 2008
3:04 pm
Messages 20471 - 20500 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