val <T : Path> Expect<T>.parent: Expect<Path>
Expects that this Path has a parent and creates an Expect for it, so that further fluent calls are assertions about it.
AssertionError
- Might throw an AssertionError if the assertion made is not correct.
Return
The newly created Expect.
Since
0.9.0
fun <T : Path> Expect<T>.parent(assertionCreator: Expect<Path>.() -> Unit): Expect<T>
Expects that this Path has a parent and that the parent holds all assertions the given assertionCreator creates for it and returns this assertion container.
AssertionError
- Might throw an AssertionError if the assertion made is not correct.
Return
This assertion container to support a fluent API.
Since
0.9.0