I guess that makes sense... I'm working on a new version control system at the moment and we have a bunch of external dependencies for each unit test; so I was...
20510
zeeger88
May 31, 2008 5:11 am
I am a student at Delft University of Technology and I am performing a research project on the quality and (co-)evolution of unit tests. For this project I am...
20509
Mark Levison
marklevison
May 31, 2008 5:11 am
If you're willing to accept an alternate source (all hail JB :-)), Atomic Objects has links to videos by Brian Marick and Ron Jacobs doing demos: ...
20508
J. B. Rainsberger
nails762
May 30, 2008 3:35 pm
... Right now, you have to watch me do it live; I don't have any recordings of it. I think it would be a good idea to record a video demo of it, but I probably...
20507
Israel Antezana
israelantezana
May 30, 2008 3:03 am
J.B., where can we see your "Architecture withouth Trying" demo and/or the Presenter First demo? Regards, Israel ... De: J. B. Rainsberger...
20506
Ole Ersoy
ole.ersoy@...
May 30, 2008 3:03 am
Without test driven development it's really easy to write 2 very complicated methods that do the job and are easy for the developer that wrote them to...
20505
J. B. Rainsberger
nails762
May 30, 2008 12:45 am
... I would ask the team whether they want to work on a real feature in order to learn TDD. If they do, then iteration 1 is building something simple that runs...
20504
Martin Erlandsson
martin_erlan...
May 29, 2008 11:42 pm
... Yes, that would be an alternative to baking your own SecurityManager I guess. Thanks. ... I know there are several views on how to define a unit test, but...
20503
Mark Levison
marklevison
May 29, 2008 11:41 pm
I've been asked to organize a half-day/day long session to help a team at my organization really learn TDD. They have all been to a TDD course but for a...
20502
Sankar
vsnk70
May 29, 2008 11:41 pm
I am trying to use maven with Junit4 test cases. Eclipse runs these tests just fine but maven doesn't recognize any of these tests. Here is the code import...
20501
Brett L. Schuchert
schuchert
May 29, 2008 3:05 pm
I was looking for an example of writing a custom runner and didn't have a lot of luck, so I cracked open the source and figured something out. If you're...
20500
martin_erlandsson
martin_erlan...
May 29, 2008 3:04 pm
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...
20499
Jan Kroeze
thejcwk
May 29, 2008 3:04 pm
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...
20498
Joakim Ohlrogge
j0hlrogge
May 29, 2008 10:30 am
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...
20497
martin_erlandsson
martin_erlan...
May 29, 2008 10:11 am
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 ...
20496
J. Falkink
jfp_k
May 27, 2008 1:57 am
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...
20495
toalexsmail
May 26, 2008 6:22 pm
... testRunStarted() - Called before any tests have been run. testStarted() - Called when an atomic test is about to be started. testRunEndedand() and...
20494
Jo
jfp_k
May 26, 2008 6:22 pm
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...
20493
mchollgarcia
May 26, 2008 6:21 pm
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...
20492
Ilja Preuss
ipreussde
May 24, 2008 8:51 pm
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...
20491
zengcaihui198627
zengcaihui19...
May 24, 2008 8:15 am
junit4.4 TestRunListener.java package junit.runner; /** * A listener interface for observing the * execution of a test run. Unlike TestListener, * this...
20490
mailtoshubha
May 22, 2008 2:31 pm
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 ...
20489
Megan Brown
meganole25
May 22, 2008 5:58 am
Brought to you by StickyMinds.com and Better Software magazine * Sponsored by Telelogic * As organizations struggle with financial management and fewer...
20488
Wayne Fay
jaeger321
May 18, 2008 12:26 am
JUnit is not "installed" with Maven in the traditional sense. Instead, Maven automatically downloads the JUnit jars (and other jars that your application...
20487
ben.aurel
May 17, 2008 6:05 pm
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...
20486
Joakim Ohlrogge
j0hlrogge
May 15, 2008 10:59 am
... 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...
20485
Böhm, Martin
martinboehms...
May 15, 2008 7:48 am
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...
20484
Wendy Smoak
wendysmoak
May 10, 2008 2:58 pm
... Default OS X software install. export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Home ... Most open source libraries are already...
20483
Nat Pryce
nat_pryce
May 10, 2008 2:57 pm
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...
20482
ben.aurel
May 10, 2008 2:49 pm
thanks the reference to the class location (.) helped.. ... variable ... to the ... SimpleTest...