它可以在春季启动或正常项目中工作 但是在junit运行
时不起作用我看到了很多关于龙目岛的解决方案 但是,没用
例如
在intellij中安装lombok插件
构建,执行,部署->编译器->注释处理器->启用注释处理检查!
import lombok.extern.java.Log;
import org.junit.Test;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Tag;
import static org.junit.jupiter.api.Assertions.assertEquals;
@Tag("fast")
@Log
public class MainTest {
@BeforeAll
static void setup() {
log.info("@BeforeAll - executes once before all test methods in this class");
}
@BeforeEach
void init() {
log.info("@BeforeEach - executes before each test method in this class");
}
@Test
@DisplayName("My first junit 5 test")
void additionTest() {
assertEquals(1+1, 1);
}
}
error: package lombok.extern.java does not exist
error: cannot find symbol @Log