Re: ant git commit: Use try-with-resources and ExpectedException

2018-08-15 Thread Gintautas Grigelionis
I believe we discussed writing tests before. It is not a matter of style, but of keeping assumptions and assertions explicit. You replaced a JUnit 4 assertion with some code that works, but is far from being clear. There is a reason why JUnit provides specialised assert... methods and you could hav

Re: ant git commit: Use try-with-resources and ExpectedException

2018-08-15 Thread Gintautas Grigelionis
Jaikiran, your code allowed for false positives, too Gintas On Wed, 15 Aug 2018 at 09:11, Gintautas Grigelionis wrote: > I believe we discussed writing tests before. It is not a matter of style, > but of keeping assumptions and assertions explicit. > You replaced a JUnit 4 assertion with some

Re: ant git commit: Use try-with-resources and ExpectedException

2018-08-15 Thread Jaikiran Pai
On 15/08/18 12:41 PM, Gintautas Grigelionis wrote: > I believe we discussed writing tests before. It is not a matter of style, > but of keeping assumptions and assertions explicit. Which assumption are you talking about? Can you use the current commit to explain it? > You replaced a JUnit 4 asse

Re: ant git commit: Use try-with-resources and ExpectedException

2018-08-15 Thread Jaikiran Pai
Is that the reason you moved to this style of coding? I don't plan to use ExpectedException or that style of testing in code that I write. Are you going to keep overriding such commits? -Jaikiran On 15/08/18 1:18 PM, Gintautas Grigelionis wrote: > Jaikiran, > > your code allowed for false positiv