When I try to run my test, I get the following errors: I looked at google and found something on google, but that did not help.
Error:(3, 24) java: package org.junit does not exist
Error:(3, 1) java: static import only from classes and interfaces
Error:(5, 17) java: package org.junit does not exist
Error:(6, 17) java: package org.junit does not exist
Error:(12, 10) java: cannot find symbol
symbol: class Before
location: class edu.kit.ipd.swt1.SimpleEditMeTest
Error:(17, 10) java: cannot find symbol
symbol: class Test
location: class edu.kit.ipd.swt1.SimpleEditMeTest
[...]
My test code is:
package edu.kit.ipd.swt1;
import static org.junit.Assert.assertNotNull;
import org.junit.Before;
import org.junit.Test;
public class SimpleEditMeTest {
private EditMe editMe;
@Before
public void setUp() throws Exception {
editMe = new EditMe();
}
@Test
public void test() {
assertNotNull(editMe.getFoo());
}
}
Screenshot of the entire project
Run configuration
Dependencies i.stack.imgur. com / OiQWU.png (cannot post more than two links)
source
share