Just for feedback. all of the Groovy JUnit 4.x examples from here: http://groovy.codehaus.org/Using+JUnit+4+with+Groovy ran without change with 4.5 beta 2. At...
Paul King
paulk@...
Jul 1, 2008 1:01 pm
20639
Johannes, Did you get a chance to write a test? Any help I can provide? Thanks, David Saff...
Are you planning to leave the block test runner in an internal package? Or will you move to a public package before release? Or in a future release? If you...
Last year, I made the big switch from Windows to Mac OS X, and became a Mac fanatic. I now regularly read Apple blogs. And whenever the Apple Store website...
David, Johannes sent me a test over the weekend. Perhaps you and I can integrate it today (I'm sending this publicly so everyone here knows Johannes was on the...
Nat, We just moved BlockJUnit4ClassRunner and friends to the published side of the packages. We keep published code API compatible for at least one release,...
Johannes, As you port ClasspathSuite, be sure to take a look at the new RunnerBuilder support (check out the RunWith javadocs for now). Let me know if that...
... Excellent (thanks again for the write-up, too.) ... Please stay with runClasses, and not runMain: /** * Do not use. Testing purposes only. * @param system ...
... That's great. I've just updated from CVS to build a snapshot and noticed that every time I update I get a merge conflict in junit.runner.Version because it...
Hi @all sorry to come late the discussion. usally I use a similar naming convention that consists of the three test parts - method name or action to test (e.g....
Hi, I am currently ivestigating how to write a JUnit testsuite that allows configuration- and annotation-based skips of tests as well as a well defined...
Hi! I have implemented a very straight-forward sorter that runs fine in JUnit up to version 4.4 but not in 4.5 beta. Here is the sorter: public class...
Hi, Has anyone had the opportunity to look into this. I was basically trying to run category based test from ANT, build file. Running test based on category is...
Sadly, it appears to be no such thing. JUnit.org has in the past been maintained by objectmentor, most recently (to my knowledge) by Ben Rady, who I just...
Hi, I am using junit4.4. I need to get notify when test is called. I also need to know when the beforeTest called and also beforeClass. What I don't know how...
idan72
ishai@...
Jul 3, 2008 9:39 pm
20656
Hi, i am currently looking for the a solution to remotely run JUnit tests from our cruise control (cruise control runs ant with JUnit, tests should run on...
Given that the final touches are being made to a new release, I'd say the project was still very much alive. But a dead website isn't going to help it look...
How about ssh? You can use sftp to copy the files to the remote machine and then ssh to run ant. Or, to avoid the sftp stem, use NFS to share the drive on the...
Hi Nat, thanks for the reply & your approach. Call me picky but this approach involves a lot of administrative effort (keep ant file up to date, deploy...
... You do that as part of the project, right? Otherwise how do you build and test your application? ... That's a single copy command, or you can just share...
On second thoughts, this can be done by a continuous integration server that can pipeline builds and run builds on different machines. Team City from JetBrains...
Hi All, I am using jdk 1.5 build 6 with ant 1.7 version. when i am executing my test framework i am getting following error... "Forked Java VM exited...
Hi, I just got around to looking into parameterized tests a little more. But it confirmed the impression I got when they came out with JUnit 4. They are sooo...