0

Possible Duplicate:
GHUnit error file _OBJC_CLASS_$_SenTestCase", referenced

I would like to use GHUnit in my project but i'm getting this error

Undefined symbols for architecture i386: "_OBJC_CLASS_$_SenTestCase", referenced from: _OBJC_CLASS_$_LogicTests in LogicTests.o "_OBJC_METACLASS_$_SenTestCase", referenced from: _OBJC_METACLASS_$_LogicTests in LogicTests.o ld: symbol(s) not found for architecture i386 clang: error: linker command failed with exit code 1 (use -v to see invocation)

Community
  • 1
  • 1
Ziad Tamim
  • 350
  • 6
  • 17

1 Answers1

2

Be sure you linked SenTestingKit.framework with your project (although, with GHUnit it really shouldn't be necessary).

Richard J. Ross III
  • 55,009
  • 24
  • 135
  • 201