I have some old code that I would like to test using Junit. After importing it into Eclipse it looks like this:

After this, I try to test the class ACos. I've entered some values, but it doesn't work. I get this:

What have I done wrong?
|
I have some old code that I would like to test using Junit. After importing it into Eclipse it looks like this:
After this, I try to test the class What have I done wrong? |
||||
|
|
|
Looks like your class under test is in the main package (= ""). Try without jscicalc.pobject. Correction: If pobject is supposed to be the package, you should set it as source folder. (Right-click -> Build path on it). |
|||
|
|
|
Your Java code should be under the It probably needs to be in a package as well, but that's not as easy to tell without seeing the code within it. It should also be obvious with the errors that occur when moving it. |
|||||||||||||||
|