You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -367,7 +367,7 @@ This is simpler and avoids extra boilerplate.
367
367
#### Answer description
368
368
369
369
The `Answer` interface lets you implement a `description()` method, which provides a human-readable explanation of the answer.
370
-
This is especially useful for debugging, e.g., with [printMokkeryDebug](https://mokkery.dev/api_reference/mokkery-runtime/dev.mokkery.debug/print-mokkery-debug.html)
370
+
This is especially useful for debugging, e.g., with [printMokkeryDebug](pathname:///api_reference/mokkery-runtime/dev.mokkery.debug/print-mokkery-debug.html)
371
371
372
372
The description should resemble the code usage:
373
373
```kotlin
@@ -386,10 +386,10 @@ private class ReturnsDelayedAnswer<T>(private val value: T) : Answer<T> {
386
386
387
387
When implementing custom answers, these helper interfaces can useful:
388
388
389
-
-[Answer.Suspending](https://mokkery.dev/api_reference/mokkery-runtime/dev.mokkery.answering/-answer/-suspending/index.html) - For suspend-only answers.
389
+
-[Answer.Suspending](pathname:///api_reference/mokkery-runtime/dev.mokkery.answering/-answer/-suspending/index.html) - For suspend-only answers.
390
390
Provides a default blocking implementation that throws an exception.
391
-
-[Answer.Blocking](https://mokkery.dev/api_reference/mokkery-runtime/dev.mokkery.answering/-answer/-blocking/index.html) - For blocking-only answers.
391
+
-[Answer.Blocking](pathname:///api_reference/mokkery-runtime/dev.mokkery.answering/-answer/-blocking/index.html) - For blocking-only answers.
392
392
Provides a default suspend implementation that throws an exception.
393
-
-[Answer.Unified](https://mokkery.dev/api_reference/mokkery-runtime/dev.mokkery.answering/-answer/-unified/index.html) - Adds a third call overload with MokkeryCallScope.
393
+
-[Answer.Unified](pathname:///api_reference/mokkery-runtime/dev.mokkery.answering/-answer/-unified/index.html) - Adds a third call overload with MokkeryCallScope.
394
394
The other two overloads delegate to this method, so you only need to implement one function.
395
395
Useful when the same logic applies to both blocking and suspend contexts.
0 commit comments