Re: Test Driven Development in GNUstep

2021-11-07 Thread Gregory Casamento
I was actually about mention this too. This is built into gnustep-make. You can find examples in both libs-base and libs-gui on how to use it. Tests for libs-gui need to be more complete. Yours, GC On Sun, Nov 7, 2021 at 12:01 PM Riccardo Mottola wrote: > Hi, > > On 11/6/21 8:44 PM, Tito

Re: Test Driven Development in GNUstep

2021-11-07 Thread Riccardo Mottola
Hi, On 11/6/21 8:44 PM, Tito Mari Francis Escaño wrote: Looking for test driven development tools for Objective-C, I ran into OCUnit > and OCMock >, are these commendable

Re: Test Driven Development in GNUstep

2021-11-06 Thread Gustavo Tavares
This is my favorite way to test Objective-C code: https://github.com/mpw/MPWTest To reduce size on release—I usually write the tests in a category and I wrap them in a macro such as: > > #if TESTABLE_BUILD > > @implementation > > #endif On Sat, Nov 6, 2021, at 3:44 PM, Tito Mari Francis

Test Driven Development in GNUstep

2021-11-06 Thread Tito Mari Francis Escaño
Hi everyone, Looking for test driven development tools for Objective-C, I ran into OCUnit and OCMock < https://ocmock.org/>, are these commendable tools to use with GNUstep? What are the recommended alternative if these are not viable? Please provide pointers