Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(feat) Assert, Matcher: Improve type-aware matchers. #195

Merged
merged 11 commits into from Feb 21, 2015

Conversation

hastebrot
Copy link
Member

cc: #193

@hastebrot
Copy link
Member Author

Examples for former Commons.hasText(String text), hasText(Matcher<String> matcher) and nodeLabeledBy(String labelQuery):

FxAssert.verifyThat(".label", NodeMatchers.hasText("Move Up"));
FxAssert.verifyThat(".label", NodeMatchers.hasText(endsWith("Up")));

nodes(hasText("Move Up")).queryFirst();
nodes(hasText(endsWith("Up"))).queryFirst();
nodes(".label").select(hasText("Move Up")).queryFirst();

clickOn(hasText("Move Up"));
clickOn(hasText(endsWith("Up")));

@hastebrot
Copy link
Member Author

Examples for former ContainsNodesMatcher.contains(String domQuery) and contains(int numberOf, String domQuery):

FxAssert.verifyThat("#toolbar", NodeMatchers.hasChild("#saveButton"));
FxAssert.verifyThat("#toolbar", NodeMatchers.hasChildren(3, ".button"));

FxAssert.verifyThat("#toolbar", ParentMatchers.hasChild());
FxAssert.verifyThat("#toolbar", ParentMatchers.hasChildren(9));

hastebrot added a commit that referenced this pull request Feb 21, 2015
feat(Matcher): Implement type-aware matchers.
@hastebrot hastebrot merged commit 5521073 into TestFX:master Feb 21, 2015
@hastebrot hastebrot changed the title feat(Matcher): Implement type-aware matchers. (feat) Assert, Matcher: Implement type-aware matchers. Feb 26, 2015
@hastebrot hastebrot changed the title (feat) Assert, Matcher: Implement type-aware matchers. (feat) Assert, Matcher: Improve type-aware matchers. Feb 26, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant