Releases: glytching/junit-extensions
Releases · glytching/junit-extensions
2.6.0
2.5.0
2.4.0
2.3.0
- Class variable
TemporaryFolder
is now supported via injection in a@BeforeAll
and this instance is shared amongst all tests in the test case. - Parameter injection now gets its own
TemporaryFolder
so no sharing ofTemporaryFolder
instances between tests. - Upgraded to v5.2.0 of
junit-jupiter-*
- Upgraded to v1.2.0 of
junit-platform-*
- Cleaned up some issues identified by Scrutinizer-CI's static analysis
2.2.0
Closes the following issue:
2.1.0
Closes the following issues:
2.0.0
The @SystemProperty
annotation is now @Repeatable
so any usages of @SystemProperties
will have to be changed on upgrading to v2.x.
For example, this ...
@SystemProperties(
properties = {
@SystemProperty(name = "keyA", value = "valueA"),
@SystemProperty(name = "keyB", value = "valueB")
}
)
... changes to:
@SystemProperty(name = "keyA", value = "valueA")
@SystemProperty(name = "keyB", value = "valueB")