我想在jococo中排除代码。我已经在我的代码中为我想要包含的包括我要排除的包,反之亦然。
但仍然是ECLEMMA而junit覆盖正在读取整个代码,即所有包,因此我的代码覆盖率下降。
这是我的代码:
<includes>
<include>com.cfgh.controller.*</include>
<include>com.cfgh.service.*</include>
<include>com.cfgh.repository.*</include>
</includes>
<excludes>
<exclude>com.cfgh.config.*</exclude>
<exclude>com.cfgh.model.dto.*</exclude>
<exclude>com.cfgh.model.entity.*</exclude>
<exclude>com.cfgh.repository.*</exclude>
<exclude>com.cfgh.exception.handler.*</exclude>
包含和排除标记在pom.xml文件中以绿色显示,但仍然没有读取它。 有人可以指导我这里正确的方向。谢谢提前