References missing

Hi,

I recently installed JMonkey 3 for the first time and after creating a new project, I got an undefined references message, for libraries: “junit” and “junit_4”. the message says the references are not defined locally. Any idea as to what I could do?

thanks in advance :slight_smile:

Easiest way is to go to:
Project Properties -> Libraries -> Tests and remove those libraries

1 Like

Just exit out of the dialog box and the program should run anyways. You shoudn’t have to worry about those problems, or, as said by wezule, just remove them.

1 Like

These libraries provide helper code for unit testing.
You don’t need them to run programs, but they are very helpful for writing unit tests.
Unit testing is important when writing library code, less so for applications, and irrelevant for most experimental code.

1 Like