Hi David, I know this is a bit late, but I was wondering if you have some pointers to the API/type changes that would lead to this issue? I'd really like to be...
22920
Steve Freeman
smg_freeman
Sep 6, 2010 8:39 pm
yes. junit-dep.jar Ships with the distribution. S....
22921
Xu, Larry
lexu@...
Sep 7, 2010 1:54 pm
Hi All, I met a trick problem "forked jvm exited abnormally". I ran the JUnit test case in ant and set the fork=yes for getting EMMA report. But I met the...
22922
mpetterson@...
mpetterson...
Sep 7, 2010 1:56 pm
Hi, We are using junit 4.7 and Suite to run tests. If we take a look at the example below ( from the web ...): import org.junit.runner.RunWith; import...
22923
David Saff
dsaff
Sep 7, 2010 1:59 pm
Hi, Mike. Yes, in JUnit 4.7, those classes will run in the order shown. However, many people find a lot of benefits from writing test suites that are useful,...
22924
David Saff
dsaff
Sep 7, 2010 2:05 pm
Alexandru, I may be able to dig up the thread later today. I'll try. David Saff...
22925
Kent Beck
kentlbeck
Sep 7, 2010 2:17 pm
Without contradicting David, I'll say just the opposite :-) The order of execution of tests is not guaranteed. Period. If you'd like, I can go into the...
22926
Stefan Bodewig
sbodewig
Sep 7, 2010 2:39 pm
... This means that for some reason the Java VM that is running your unit tests exited before all tests finished. The reason could be a crash in your VM (like...
22927
Stefan Bodewig
sbodewig
Sep 7, 2010 3:13 pm
... I remember XMLUnit's tests were one affected, see <http://github.com/KentBeck/junit/issues/issue/9> and the thread that lead to it as well as ...
22928
David Saff
dsaff
Sep 7, 2010 3:50 pm
Stefan, That sounds very familiar. Thank you for digging that up. David Saff On Tue, Sep 7, 2010 at 11:12 AM, Stefan Bodewig...
22929
Brett Daniel
brettddaniel
Sep 8, 2010 12:37 am
Resurrecting an old thread: I'm not aware of a definitive list, but I'd particularly like to see some realistic sample applications using Theories, Rules, and...
22930
Xu, Larry
lexu@...
Sep 8, 2010 10:28 am
HI Stefan, Sincerely thanks for your reply. As you said, I have added a format ¡®Plain¡¯ in the junit task ang check the ant log and output of unit test. ...
22931
monika.moat
Sep 10, 2010 2:48 pm
Hello Everybody, for some concurrrent Junit tests, I took the classes, which I found on the Junit Webside: http://www.junit.org/node/589 and ...
22932
David Saff
dsaff
Sep 10, 2010 3:16 pm
It's a good question. If you don't find someone here with time to answer, you may want to go back to the original author: junit.org serves as a clearing house...
22933
Esko Luontola
egeluontola
Sep 11, 2010 10:08 pm
I'll soon start writing a new test runner - a common test runner for the JVM, codename CTR4J. It will provide a superset of JUnit's test runner's features,...
22934
David Saff
dsaff
Sep 13, 2010 2:28 pm
Esko, This is a lot to absorb all at once. I'd love to go down the list and see what makes sense outside JUnit vs. inside JUnit. I notice that a number of...
22935
Bill Venners
billvenners
Sep 13, 2010 3:43 pm
Hi Esko, David, ... them is that is that you can make a progress bar that gives feedback to the user as the tests run. That's a really nice feature in GUI test...
22936
Esko Luontola
egeluontola
Sep 13, 2010 7:19 pm
... Yes. In addition to programming I do also interaction design, and usability is very important to me. My development process is to first design the UI and...
22937
David Saff
dsaff
Sep 13, 2010 7:34 pm
Esko, There's a lot going on here, and good luck to you. I'm happy to keep talking about this. However, it will be easier for me (and possibly for the group)...
22938
Bill Venners
billvenners
Sep 13, 2010 9:45 pm
Hi Esko, ... What you say you want here makes sense. My point is that it doesn't require nested tests. You can do it with nested descriptions. That's the...
22939
Mike Forsberg
bigmike_f
Sep 13, 2010 9:45 pm
I may be wrong, but it sounds like this project will be a JUnit "engine" geared specifically for IntelliJ. Is there any chance that the core functionality...
22940
Esko Luontola
egeluontola
Sep 13, 2010 10:51 pm
... My examples just relate to IntelliJ because that's my IDE of choise. CTR4J isn't meant to be IDE specific. It's meant to be something that every...
22941
Beatriz
bnombela
Sep 15, 2010 1:34 pm
Hi all, I'm newbie with Scala. I have an application written in Scala and integrated with JUnit. I need two methods annotated with @BeforeClass and...
22942
David Saff
dsaff
Sep 15, 2010 1:46 pm
Beatriz, I've ran into the same problem, and it's driven me crazy. I'm curious if the information in ...
22943
Daniela Waranie
typo3-community@...
Sep 17, 2010 3:05 am
Hi, the "junit result format" introduced by the ant project is a defacto standard to exchange test result data between test runners and build servers / IDE -...
22944
Esko Luontola
egeluontola
Sep 17, 2010 9:03 am
... +1 Rethinking the result format fits into CTR4J's scope (http://tech.groups.yahoo.com/group/junit/message/22933) and I would be happy to collaborate with...
22945
Mike Forsberg
bigmike_f
Sep 17, 2010 1:47 pm
I've personally ran into issues in the past where specific features in JUnit 4.x would fail to generate XML output using Ant's XMLJUnitResultFormatter, maybe...
22946
David Saff
dsaff
Sep 17, 2010 2:07 pm
... No, we've always been output-format neutral, but are glad that the community's gotten so much mileage out of a common spec. ... That was my assumption. ...
22947
David Saff
dsaff
Sep 17, 2010 2:07 pm
... No, we've always been output-format neutral, but are glad that the community's gotten so much mileage out of a common spec. ... That was my assumption. ...
22948
Daniela Waranie
typo3-community@...
Sep 17, 2010 11:01 pm
Hi Esko, thanks for the link. I see some similarities of your link and my link (to the wiki page). It would be nice if you can figure out what of your thoughts...