Skip to content

Commit

Permalink
Updated README
Browse files Browse the repository at this point in the history
Makefile for easy compilation and some headers (the way it should have
been)
  • Loading branch information
chriscowdery committed Sep 16, 2011
1 parent c76c71d commit f0390cf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
piCotest 0.1
piCotest 0.2

About
-----
Expand All @@ -8,11 +8,11 @@ Above all else, it's designed to be lightweight and simple.
Usage
-----
1. Create an empty C file
2. #include "picotest.c"
2. #include "picotest.h"
3. Create a void * test method (e.g. void *testOne() { ... } )
4. Inside the method, use TEST_ASSERT("String Description here", truthExpressionToEvaluateHere);
5. In your main method, use the addTestMethod to add your test to the suite (e.g. addTest(testOne);)
6. When done adding tests, invoke executeTestSuite();
5. Inside the method, use TEST_ASSERT("String Description here", truthExpressionToEvaluateHere);
6. In your main method, invoke initializePicotest() and then use the addTestMethod to add your test to the suite (e.g. addTest(testOne);)
7. When done adding tests, invoke executeTestSuite();

Coming Soon
-----------
Expand Down

0 comments on commit f0390cf

Please sign in to comment.