Hi again, ... Sorting and filtering in general could possibly be solved in this manner as well, with reservation for managing the Description. Cheers Daniel...
Hi David, The solution in my email proved unuseful for nested suites, since each suite needs its own "thread pool" (an ExecutorService). This leeds to ...
On Thu, Jul 17, 2008 at 3:39 PM, Daniel Brolund ... FYI, We're looking at parallel execution as a baked-in optional feature in JUnit {4.n | n >= 6}. We'd love...
Daniel, On Thu, Jul 17, 2008 at 3:39 PM, Daniel Brolund ... Absolutely. We've built a similar idea into BlockJUnit4ClassRunner in JUnit 4.5. Imagine: public...
Dear Alex, You can read about our discovery of the new design at: www.threeriversinstitute.org/TwoMoreImplementationPatterns.htm. The precise details have...
... Good morning. ... @RunWith(Suite.class) @SuiteClasses(A.class, B.class) public class MySuite { @BeforeClass public static void doYourOneTimeSetup() {} ...
I would see this as a workaround. As I said, dependencies are a frequent and often important issue in organisation of various things (lets be general). So a...
Thanks for the suggestion. I didn't know this exists. Still I think, that dependencies should be supported by JUnit out of the box. ... From: adrian.kuhn...
Hi, David! I just want to understand you point. Suppose I have 200 test method in 50 classes. In this class every test method should be somethiing like this: ...
Hi David! Issue 2008607 (http://sourceforge.net/tracker/index.php?func=detail&aid=2008607&group_id=15278&atid=115278) is not in that snapshot, is it? I gave it...
Nat, Thank you for the feedback. We made a mistake in method validation somewhere in 4.5. We'll fix it before releasing. Regards, Kent Beck Three Rivers...
... I've ported the JMock runner to the new package structure in 4.5 Beta-3 and it works fine. However, I noticed that the old test runner works differently in...
It appears junit.org is mostly up. ("Releases" is empty, but we'll enter 4.5 soon). Let me know if anything is obviously missing. I'm aware the javadoc is...
Hi, sorry, for the late answer. ... Mock frameworks will help you in cases, when you want to manipulate the indirect outputs and inputs of a unit. Assuming...
Dear Malte, I think I understand your position. The proposed interface conflicts with the basic JUnit value of simplicity--all tests in a class run with the...
I am using Ivy to declare and manage my dependencies on a Groovy based custom runner for Selenium test scripts. I was wondering whether the JUnit 4.5 betas and...
Dear Hans, have a look at JExample, it extends JUnit with first-class dependencies. You can declare @Depends(...) which is taken into account when running the...
... It sounds like a very good place to start. I hope you have enjoyed what you've read so far. ... I see a deeper design issue here that I want to make you...
@BeforeClass and @AfterClass on the @RunWith(Suite) class have exactly this behavior in JUnit 4.4 and beyond. However, I think the original poster was using...
Hans, There is a way of getting very close to what you want in JUnit 4.4 and beyond, with assumptions: private boolean canLogin() { // return true if login...
All, If all goes well, here are the release notes for JUnit 4.5. Share and Enjoy. David Saff ## Summary of Changes in version 4.5 ## ### Installation ### - We...