0

Is it possible to create Test Bundle with OCUnit for unit tests, but instead OCUnit use GHUnit?

Piotr Wach
  • 913
  • 2
  • 9
  • 22

1 Answers1

0

Are you asking if it is possible to use the GHUnit test runner for regular OCUnit/SenTestCase tests? If so, I expect you can based on reading the documentation. Try creating the test bundle as usual (if you don't already have one), and add the GHUnit target according to the instructions. Then add your SenTestCase test files to the GHUnit target, and they should get run automatically by GHUnit.

Greg Haskins
  • 6,714
  • 2
  • 27
  • 22