verify No Unmatched Stubs
Verifies that all registered stubs have been matched at least once.
Example:
// given
mokksy.get {
path("/api/resource")
} respondsWith(String::class) {
body = "ok"
}
// when
client.get("/api/resource")
// then
mokksy.verifyNoUnmatchedStubs() // passes — stub was triggeredContent copied to clipboard
Throws
If any stub was registered but never triggered during execution.