This repository was archived by the owner on Jul 11, 2025. It is now read-only.
junit
Directory actions
More options
Directory actions
More options
junit
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
This package creates an Objective-C library of JUnit's core classes. To use, create an executable with one or more test classes, linking with the "-l junit" flag. Tests are executed by running the binary with one or more test and/or test suite class names: $ j2objc -classpath [j2objc-dist]/lib/junit*.jar FooTest.java BarTest.java $ j2objc -o tests FooTest.m BarTest.m -l junit $ ./tests org.junit.runner.JUnitCore FooTest BarTest