作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
testFx已在Eclipse中运行,并且GUI测试成功运行。但这不适用于gradle。它给我一个按钮上的NoNodeFoundException。
如果我摆脱了那行代码,它会向我显示指向TextField的下一行的相同异常。
似乎除开发人员外,没有人尝试过将testfx与gradle结合使用。
知道如何解决吗?
gradle.build
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'checkstyle'
apply plugin: 'application'
apply plugin: 'jacoco'
group = 'TodoManager'
version = '0.0.1'
description = """Aufgabenplanung"""
defaultTasks 'clean', 'test', 'build', 'jacocoTestReport','distZip','javadoc','wrapper'
repositories {
maven { url "http://repo.maven.apache.org/maven2" }
jcenter()
mavenCentral()
}
jar {
baseName = 'TodoManager'
version = '0.5.0'
}
dependencies {
/*
testCompile group: "org.loadui", name: "testFx", version: "3.1.2"
testCompile "org.testfx:testfx-core:4.0.+"
testCompile "org.testfx:testfx-junit:4.0.+"
compile files('lib/TodoManagerLibrary-1.1.jar')
testCompile 'junit:junit:4.+'
*/
testCompile group: "org.loadui", name: "testFx", version: "3.1.2"
testCompile "junit:junit:4.10"
testCompile "org.testfx:testfx-core:4.0.+"
testCompile "org.testfx:testfx-legacy:4.0.+", {
exclude group: "junit", module: "junit"
}
}
checkstyle {
sourceSets = [sourceSets.main]
}
jacoco {
toolVersion = "0.7.1.201405082137"
reportsDir = file("$buildDir/reports/jacoco")
}
jacocoTestReport {
reports {
xml.enabled false
csv.enabled false
html.destination "$buildDir/reports/jacoco/html"
}
classDirectories = files('build/classes/')
}
test {
jacoco {
append = false
destinationFile = file("$buildDir/jacoco/jacocoTest.exec")
classDumpFile = file("$buildDir/jacoco/classpathdumps")
}
}
最佳答案
我最近开始在gradle中使用testfx。
这是我的build.gradle
:
plugins{
id 'application'
id 'com.github.johnrengelman.shadow' version '1.2.3'
}
mainClassName = "dialogio.Dialogio"
repositories {
mavenCentral()
}
dependencies{
compile 'com.google.guava:guava:19.0'
compile 'org.controlsfx:controlsfx:8.40.10'
testCompile 'org.loadui:testFx:3.1.0'
}
test {
testLogging.showStandardStreams = true
}
Button loginButton = find("#loginButton");
,即使设置了fx:id,我也会得到您提到的异常。仅在设置CSS ID之后才有效:
关于java - TestFX和Gradle-NoNodeFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34832352/
testFx已在Eclipse中运行,并且GUI测试成功运行。但这不适用于gradle。它给我一个按钮上的NoNodeFoundException。 如果我摆脱了那行代码,它会向我显示指向TextFi
我是一名优秀的程序员,十分优秀!