Код: Выделить всё
error: package org.junit does not exist
import static org.junit.Assert.*;
Вот код моего Java-файла:
Код: Выделить всё
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));
}
}
Есть ли решение этой проблемы?
Подробнее здесь: https://stackoverflow.com/questions/166 ... and-prompt
Мобильная версия