public
Description: OJUnit - Unit testing framework for Objective-J
Homepage: http://cappuccino.org
Clone URL: git://github.com/280north/ojunit.git
ojunit /
name age message
directory Framework/ Mon Nov 02 13:40:55 -0800 2009 Convert ojunit to a CommonJS package. [tlrobinson]
file README Mon Nov 02 17:30:56 -0800 2009 Use "objj-frameworks" [tlrobinson]
directory bin/ Mon Nov 16 14:15:45 -0800 2009 Incorrect case in require("os") [tlrobinson]
directory examples/ Mon Nov 02 13:40:55 -0800 2009 Convert ojunit to a CommonJS package. [tlrobinson]
file package.json Fri Nov 13 13:46:11 -0800 2009 Take out pesky unicode character for now. Need ... [tlrobinson]
README
OJUnit is a simple unit test tool written in and for Objective-J. It's based on the xUnit design.

Use the "ojtest" command line tool to run tests. For example, you can test CPDate in Cappuccino using the following:

    ojtest cappuccino/Tests/Foundation/CPDateTest.j

To run all tests in a directory (test-directory in this case):

    ojtest test-directory/*Test.j

Or to run all tests in a tree:

    find test-directory -name "*Test.j" | xargs ojtest