Code: Select all
error: package org.junit does not exist
import static org.junit.Assert.*;
Hier ist mein Java-Dateicode:
Code: Select all
package org.example.antbook.junit;
//import required JUnit4 classes:
import static org.junit.Assert.*;
import org.junit.Test;
public class SimpleTest
{
@Test
public void testSomething()
{
assertTrue("MULTIPLICATION???", 4 == (2 * 2));
}
}
Gibt es eine Lösung? dazu?