tools-make/TestFramework/example1.m
Richard Frith-MacDonald e2e760b00b Add test framework
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/tools/make/trunk@32010 72102866-910b-0410-8b05-ffd578937521
2011-02-07 20:41:58 +00:00

16 lines
414 B
Objective-C

#import <ObjectTesting.h>
/* This is the absolute minimal test program ...
* a single test case involving plain C and no Objective-C code.
*
* If you run the test with 'gnustep-tests example1.m' it should
* report a single test file completed and a single test pass
*/
int
main()
{
/* This is too simple to really be useful, but it's a start.
*/
pass(1 == 1, "integer equality works");
return 0;
}