I am very new to j2objc and have a question about translating junit test classes.
I have a class (Foo.java) and a corresponding test class (FooTest.java). I am following steps from this link to translate the test class written in java. https://developers.google.com/j2objc/guides/translating-junit-tests
But how do I add a dependency on the actual class while translating. For all the usages of the actual class within the test class, it throws cannot find symbol error in the translation step. Thanks!
Example -
${J2OBJC_HOME}/j2objc -classpath ${J2OBJC_HOME}/lib/j2objc_junit.jar FooTest.java
FooTest.java:39: error: cannot find symbol
Foo.setXYZ();
^