e.g. ``` @TestFactory fun letMeSee() = junitTests...
# minutest
r
e.g.
Copy code
@TestFactory fun letMeSee() = junitTests<String> {
    listOf("catflap", "rubberplant", "marzipan").forEach {
      fixture { it }

      test("it's not empty") {
        assert(isNotEmpty())
      }
    }
  }
actually runs 3 times with a fixture of
"marzipan"