We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be nice to be able to use this in our own mixins.
e.g. have some common set-up defined in a trait
trait PostgresSupport { self: Suite with TestContainersSuite => val container = ??? }
And then we can decide if you want to use ForEachTestContainer or ForAllTestContainer depending on the actual tests.
ForEachTestContainer
ForAllTestContainer
class MyRepoSpec extends AnyFlatSpec with ForEachTestContainer with PostgresSupport
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It would be nice to be able to use this in our own mixins.
e.g. have some common set-up defined in a trait
And then we can decide if you want to use
ForEachTestContainer
orForAllTestContainer
depending on the actual tests.The text was updated successfully, but these errors were encountered: