dmcg
11/05/2018, 2:33 PMmapFixturefixture_@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)
            }
        }
    }