Interface JXPathAsserter
-
- All Known Implementing Classes:
JXPathAsserterImpl
public interface JXPathAsserter
- Author:
- Adrian Herscu
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JXPathAsserter
assertHas(JXPathAssertion<?>... expectedContents)
Asserts that expected contents match.JXPathAsserter
assertHas(Iterable<? extends JXPathAssertion<?>> expectedContents)
Asserts that expected contents match.
-
-
-
Method Detail
-
assertHas
JXPathAsserter assertHas(Iterable<? extends JXPathAssertion<?>> expectedContents)
Asserts that expected contents match.- Parameters:
expectedContents
- the expected contents- Returns:
- this to allow fluent assertion chains
-
assertHas
JXPathAsserter assertHas(JXPathAssertion<?>... expectedContents)
Asserts that expected contents match.- Parameters:
expectedContents
- the expected contents- Returns:
- this to allow fluent assertion chains
-
-