Skip to content

Commit

Permalink
Minor text improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamCarroll committed Dec 30, 2017
1 parent 97e9d2b commit c1462f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion _posts/2016-07-27-TestFX.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ excerpt: This guide shows how TestFX can be used to automate the testing of an a

# Introduction

In this guide I show how [TestFX] can be used to automate the testing of an application with a JavaFX user interface. The article is based on the real-world experience of automating the tests for [VocabHunter]. All of the code is Open Source and GitHub links are provided so that you can follow along. I hope that you will find ideas here that you can adapt to your own project. If you want to clone the repository, you can find it in GitHub [here][GitHub].
In this guide I show how [TestFX] can be used to automate the testing of an application with a JavaFX user interface. The article is based on the real-world experience of automating the tests for [VocabHunter]. All of the code is Open Source and GitHub links are provided so that you can follow along. I hope that you will find ideas here that you can adapt to your own project. If you want to fork the repository, you can find it in GitHub [here][GitHub].

User Interface testing, like all good technical challenges, is a problem with more than one solution. The solution presented here is one that has been refined over the past year or so of work on VocabHunter and continues to evolve as the project development work continues.

Expand Down
3 changes: 2 additions & 1 deletion _posts/2016-11-13-JavaFX-Dependency-Injection.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@ public <T> T loadNode(final FXMLLoader loader) {

return loader.load();
} catch (final IOException e) {
throw new VocabHunterException(String.format("Unable to load FXML '%s'", name), e);
throw new VocabHunterException(
String.format("Unable to load FXML '%s'", name), e);
}
}
```
Expand Down

0 comments on commit c1462f4

Please sign in to comment.