1

它适用于spring boot或普通项目,但在junit运行时不起作用

我看到了很多关于龙目岛的解决方案,但是没有用

例如

  1. 在 intellij 中安装 lombok 插件

  2. 构建、执行、部署 -> 编译器 -> 注释处理器 -> 启用注释处理检查!

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
4

0 回答 0