Your mission - get ``` @TestFactory fun `copes...
# minutest
d
Your mission - get
Copy code
@TestFactory fun `copes with no fixture if context has no operations`() = junitTests<Pair<Int, String>> {
        context("supplies the fixture") {
            fixture {
                42 to "the answer"
            }
            test("test") {
                assertEquals(42, this.first)
            }
        }
    }
to pass with as little collateral damage as possible