Vincent Fuchs
Vincent Fuchs
currently, it seems that when no exclusion is defined, everything is excluded : it should be the other way around
production code has been converted to Kotlin, but not all of it is really using the Kotlin idioms - don't hesitate to improve. Also, we would need to convert all...
## Summary When performing bulk actions, we currently need to provide : - git Login - git OAuthToken - email address But from OAuthToken, using we can get for sure...
hi, in my Kotlin code base, I have quite a lot of calls to `org.junit.jupiter.api.assertThrows` , and depending on the package, I want to block it or not. I am...
## Summary ## Details ## Context ## Checklist: - [ ] I've added tests for my code. - [ ] Documentation has been updated accordingly to this PR ## Related...
## Summary ## Details ## Context ## Checklist: - [ ] I've added tests for my code. - [ ] Documentation has been updated accordingly to this PR ## Related...
As mentionned in this plugin by @alexvictoor (https://github.com/alexvictoor/pitest-cucumber-plugin), Cucumber tests are not taken into account by PIT when running a mutation analysis. Similarly, the IntelliJ plugin currently doesn't run the...
Hi, I'm not finding your jar in Maven central repo.. is it somewhere ?
Using v1.6.1, we regularly get this error TypeError: Cannot read properties of undefined (reading 'split') how do we debug this ? the output is not really helpful at the moment...
Hi, Assuming the faked objects have proper hashcode / equals implementation, I would expect below test to work... ``` @Test public void twoInstancesShouldBeEqualIfBuiltTheSameWay_notWorking(){ NormalRequest req1=fakeA(NormalRequest.class); NormalRequest req2=fakeA(NormalRequest.class); assertEquals(req1,req2); } ```...