-
Given a dynamic test like the below I can't see how it's possible to use an annotation and have a unique key for each iteration:
```
class UnitTest {
@Nested
inner class Something {
…
-
## Overview
`IsTestMethod` and `IsTestTemplateMethod` currently validate that `@Test` and `@TestTemplate` methods have a `void` return type; however, `IsTestFactoryMethod` only validates that `@Tes…
-
## Overview
It would be nice if you could write something like this in Kotlin when working with JUnit Jupiter.
```kotlin
@TestFactory
fun `dynamic tests returned as Kotlin sequ…
-
The test code can be refactored considerably by refactoring common elements into a `testFactory` function. Here is a crude example.
``` r
config
-
It would be really nice if some of the internal api used for designing testing styles could be exposed.
Specifically:
- the `build()` extension function on `TestFactoryConfiguration`
- the `tests…
-
### What version of Bun is running?
1.1.12+43f0913c3
### What platform is your computer?
Linux 5.15.0-107-generic x86_64 x86_64
### What steps can reproduce the bug?
1. Create **testfa…
-
I tried to write the following test using JUnit5's [dynamic tests](https://junit.org/junit5/docs/current/user-guide/#writing-tests-dynamic-tests):
```java
import org.approvaltests.Approvals;
impo…
-
**Which version of Kotest are you using** 5.9.1
I've got an abstract class for test specs that gets spread among multiple types of packets (i.e. packets sent/received over a network) and it has a b…
-
The JUnit Platform offers a [UniqueIdSelector](https://github.com/junit-team/junit5/blob/7416e56237d3eefc890d3b36164a1b4a22fd5941/junit-platform-engine/src/main/java/org/junit/platform/engine/disc…
-
The test timeout option to TestFactory can help to debug or catch any infinite loop or wait on events that don't happen.
# Example usage
factory = TestFactory(mytest)
factory.generate_tests(time…