Alex Panchenko

Results 50 comments of Alex Panchenko

In IDEA 2019.1 it works for me. As suggested in the mentioned junit5 issue - please try a newer version of IDEA ```java @RunWith(Parameterized.class) public class Issue1604 { @Parameterized.Parameters(name =...

The ordering of rules is addressed in #1445

It would be nice to have something like `@ClassRule`, which wraps the whole suite.

@dsaff You are right, I missed it as my Eclipse was shipped with junit 4.8, time to upgrade :-)

a) there is no memory leak. b) if regularly decoding 4Kb strings - current code allocates such a buffer only once, but with the suggested change it would be needed...

I was also thinking about such an approach. 80Mb string is a quite a special case, so let's minimize the harm by delegating it to JRE.

@lynnlovemin It seems like there are trailing spaces added on every line.

I would sugesst https://github.com/awaitility/awaitility for this.

I would prefer the `@Step` annotation on the methods which also contains a number to specify execution order, as having method names in some annotation would make it more complicated...

I am interested in implementing this properly in junit5, so would like to check if anyone is already actively working on it? And the next question is if we have...