paulduffin
paulduffin
I'm actually going from 1.9.5 to 1.10.19 but 1.10.19 removed the special support for varargs in ArgumentCaptor (captureVargarg() and getVarargsValues()) which broke some tests. I fixed the tests to use...
The only way that I can see that this can be easily and reliably achieved is to have a special method for matching against the varargs as an array. e.g....
Why do you say it cannot be solved in mockito 2 due top compatibility? I have a solution that appears to work and will upload soon.
I've created another issue similar to this but focused on Android that references this. See https://github.com/junit-team/junit4/issues/1307. I also have some prototype changes to add support. Anyone who's interested please take...
ErrorReportingRunner not support Filterable doesn't make it impossible to filter out it just makes it a lot more awkward as filter implementations have to handle it specially. That adds maintenance...
Actually, ErrorReportingRunner will create a Description with more than one child any time that ParentRunner.validate() finds more than one error, e.g. two @Test annotated methods with a parameter. However, for...
@sbrannen Basically, we have an awful lot of code involved in running the JUnit tests (i.e. not the tests themselves) which is dependent on JUnit 4 classes. Moving straight from...
Does anyone have any objections to extending JUnit 4.13/14 as requested here? I'd like to know whether I should continue working on this.
WRT your restrictions on global timeouts. 1. Ok, given that this would just be a rule the rule could do anything. It would largely be up to the person configuring...
Any feedback on this?