- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个使用 Gradle 版本 6.4 和 JDK 8 构建的项目。我正在尝试使用 Gradle plugin for Test Fixtures ( java-test-fixtures
) 但我对依赖项有一些问题。
根据上面链接的 Gradle 页面,该项目的结构应如下所示:
core-module
-- src
-- main
-- java
-- test
-- java
-- testFixtures
-- java
而
build.gradle.kts
文件具有以下依赖项部分:
dependencies {
api("com.my.external.project:1.0")
// ... more API dependencies
testFixturesCompileOnly(project(":core-module"))
testFixturesApi("junit:junit:4.12")
// ... more test dependencies
}
现在,在
testFixtures/java
中的 IntelliJ(我正在使用的 IDE)类中源文件夹见
main/java
中的类源文件夹。所以我可以在
testFixtures/java
下添加新的 Java 类依赖于
main
下的那些.
com.my.external.project:1.0
.当我尝试运行 Gradle 任务时,问题得到确认
compileTestFixturesJava
.
dependencies
中的条目部分;例如我可以补充:
testFixturesImplementationOnly("com.my.external.project:1.0")
但这并不是我真正期望做的。特别是当我有几十个依赖项时。
for-each
在他们之上。不过,这不是最干净的解决方案。
testFixtures
模块使用
main
中声明的依赖项模块?
最佳答案
Gradle 中最重要的概念 java-test-fixtures
插件在他们的documentation中说明:
[this plugin] will automatically create a testFixtures source set, in which you can write your test fixtures. Test fixtures are configured so that:
- they can see the main source set classes
- test sources can see the test fixtures classes
main
<--
testFixtures
, 和
testFixtures
<--
test
在您的情况下,
testFixtures
模块应该自动依赖
main
来源,以及
main
api
中声明的依赖项范围(
com.my.extenal.project:1.0
)
Person
来自主模块的类main
api
中声明的依赖项配置testFixtures
不会从
test
继承依赖关系模块:如果您需要在该模块中使用此类库(例如 JUnit、Mockito 等),您需要使用
testFixturesImplementation
声明显式依赖关系或
testFixturesApi
配置。
core-module
中的示例
plugins {
id ("java-library")
id ("java-test-fixtures")
}
dependencies {
// Main dependencies
// will be available in "testFixture" as well thanks to "api" configuration
api("org.apache.commons:commons-lang3:3.9")
api(project(":utils-module"))
// Testfixture dependencies
// ==> mockito lib will be available in testFixture module and also in consumer modules (e.g test)
testFixturesApi("org.mockito:mockito-core:3.5.13")
// Test dependencies
// dependencies specific to the "test" module; not visible from "testFixtures"
testImplementation("org.junit.jupiter:junit-jupiter-api:5.3.1")
testRuntimeOnly ("org.junit.jupiter:junit-jupiter-engine:5.3.1")
}
关于java - Gradle 测试夹具插件和核心模块依赖项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64133013/
是否可以设置一个夹具来创建数据库 View 而不是 CakePHP 中的数据库表?在创建表的夹具和另一个应该是数据库 View 的夹具中使用相同的数据似乎效率低下。 最佳答案 我设法这样做,其中 vi
与这个锦标赛赛程算法作斗争。 代码运行良好,但我需要帮助将数据插入 mysql我似乎无法访问 $varables.. 非常感谢 php 专家的任何调整 ... $teamnames = "Arsena
我正在尝试开始使用 Symfony2,并一直在尝试为我的应用程序的模型层设置自动化测试。 Symfony2 书讨论了 Controller 的单元测试,但我找不到很多模型测试的示例。 我希望在每次测试
我想为我的测试使用一个通用的夹具: @RunWith(JUnitPlatform::class) abstract class BaseSpek: Spek({ beforeGroup {pr
使用这个固定装置,我想根据 before 固定装置 Hook 中 API 调用的结果设置 checkoutId,这样我就可以用它来设置页面我的测试 let checkoutId; fixture`Ch
我尝试过各种尝试。这是我最新的。我只是想 stub Axios 请求并返回固定装置。 const { expect } = require('chai'); const sinon = require
我是一名优秀的程序员,十分优秀!