Skip to content

Instantly share code, notes, and snippets.

@anatolyra
Last active June 30, 2018 10:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anatolyra/0c629f47395900eb86c32142d95abe91 to your computer and use it in GitHub Desktop.
Save anatolyra/0c629f47395900eb86c32142d95abe91 to your computer and use it in GitHub Desktop.
trait TestDataSupport extends DefaultGenerator {
def testContext(testCode: DefaultObjects => Any): Unit = {
val testData = createTestData()
try {
testCode(testData) // "loan" the fixture to the test
}
finally clearTestData(testData) // clean up the fixture
}
private def createTestData(): DefaultObjects = ???
private def clearTestData(testData: DefaultObjects): Unit = ???
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment