ApacheDS server Junit 5 migration

2021-01-28 Thread Emmanuel Lécharny
Hi ! I'm working (slowly) on migrating the whole ApacheDS tests to Junit5. Last week, I was able to change the FrameworkRunner class to make it a Junit5 extension (the new way of processing pre and post actions), and I have all the core-integration tests passing, which is a huge step forward.

Re: JUNIT 5 migration

2019-05-05 Thread Emmanuel Lécharny
On 05/05/2019 12:30, Stefan Seelmann wrote: On 5/5/19 9:50 AM, Emmanuel Lécharny wrote: I'm almost done with LDAP API junit 5 migration, with only one burden : the multithreaded Rule that has to be ported. Junit 5 does not support @Rule, there is a new mechanism called extensions [1]. I still

Re: JUNIT 5 migration

2019-05-05 Thread Stefan Seelmann
On 5/5/19 9:50 AM, Emmanuel Lécharny wrote: > I'm almost done with LDAP API junit 5 migration, with only one burden : > the multithreaded Rule that has to be ported. Junit 5 does not support > @Rule, there is a new mechanism called extensions [1]. I still have to > study it. The oth

JUNIT 5 migration

2019-05-05 Thread Emmanuel Lécharny
Hi, I'm almost done with LDAP API junit 5 migration, with only one burden : the multithreaded Rule that has to be ported. Junit 5 does not support @Rule, there is a new mechanism called extensions [1]. I still have to study it. The other used rule is the one using temporary folder creation