我正在尝试在我的项目中实现TextFX来进行一些UI测试。然而,似乎我无法让它正常工作。我已经将http://search.maven.org/#search%7Cga%7C1%7Ctestfx的罐子下载到我系统上名为“TestFX-3.1.2”的文件夹中。
之后我在Netbeans8中创建了一个新的库,指向那些jar文件(jar,source和javadoc)。作为测试问题,我创建了一个简单的Java FXML项目,添加了新的库。
public class Test2 extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
接下来,我有一个FXML文件的控制器,其中包含以下生成的代码:
public class FXMLDocumentController implements Initializable {
@FXML
private Label label;
@FXML
private void handleButtonAction(ActionEvent event) {
System.out.println("You clicked me!");
label.setText("Hello World!");
}
@Override
public void initialize(URL url, ResourceBundle rb) {
// TODO
}
}
为了实现TestFX方面,我创建了一个扩展GuiTest的新类:
package test2;
import java.io.IOException;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import org.loadui.testfx.GuiTest;
public class TestTheThing extends GuiTest {
@Override
protected Parent getRootNode() {
FXMLLoader loader = new FXMLLoader();
Parent node = null;
try {
node = loader.load(this.getClass().getResource("FXMLDocument.fxml").openStream());
} catch (IOException e) {
System.out.println(e.toString());
}
return node;
}
@Test //<-- this Annotiation does not work
public void pressTheButton(){
//TODO
}
}
如上所述,代码中的@Test根本不起作用,并带有警告“找不到符号”的红色下划线。任何人都可以指出我正确的方向我做错了吗?
答案 0 :(得分:3)
根据https://repo1.maven.org/maven2/org/loadui/testFx/3.1.2/testFx-3.1.2.pom,testFx有几个依赖项(guava,junit,hamcrest-all,hamcrest-core)。要正常工作,您需要将与这些依赖项对应的jar添加到项目中。但是,使用maven是推荐的方法。
答案 1 :(得分:2)
不要将您的fxml文件直接加载到测试类中,因为它可能无法正常工作。而是以这种方式启动主类:
FXTestUtils.launchApp(Test2.class);
Thread.sleep(2000);
controller = new GuiTest()
{
@Override
protected Parent getRootNode()
{
return Test2.getStage().getScene().getRoot();
}
};
在static
类中创建一个返回舞台的getStage()
方法Test2
。上面的代码应该位于测试类中使用@BeforeClass
注释的方法中。控制器是GuiTest的静态参考。
最后,您的测试类看起来应该是这样的:
import java.io.IOException;
import javafx.scene.Parent;
import org.loadui.testfx.GuiTest;
import org.loadui.testfx.utils.FXTestUtils;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
public class TestTheThing
{
public static GuiTest controller;
@BeforeClass
public static void setUpClass() throws InterruptedException, IOException
{
FXTestUtils.launchApp(Test2.class);
Thread.sleep(2000);
controller = new GuiTest()
{
@Override
protected Parent getRootNode()
{
return Test2.getStage().getScene().getRoot();
}
};
}
@Test
public void testCase()
{
System.out.println("in a test method");
}
}
在这种情况下,您无需从GuiTest扩展。并且,不要忘记在static
课程中创建getStage()
Test2
。希望这会有所帮助。在我的情况下这很好。