Skip to content

Java Maven

核心插件

  • surefire
    • 结合其它测试框架,自动包含所有测试类

测试工具

  • jacoco
    • code coverage
  • pitest
    • mutation test

确保导入正确的 JUnit 类,否则 test 不会执行

import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;

Manifest