Re: Poll: unit tests source code layout / GWTTestCase vs. EasyMock

2009-09-15 Thread Daniel Wellman
We chose #3 - two separate source folders for tests and GWTTestCases. This also meant that we could easily run all the fast tests when we wanted quick feedback about a change. If you wanted to remove the need for the GWTTestCase, could you create an interface that wraps the History object? I

Poll: unit tests source code layout / GWTTestCase vs. EasyMock

2009-09-14 Thread Thomas Broyer
[Ray, I'm CC'ing you because I believe you have an opinion/answer on the matter] Hi all, Here's dilemma I believe many of us are facing, namely how to organize the source code of unit tests when you have both GWTTestCase and pure java JUnit tests using EasyMock (or any other mocking lib). The