You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When JUnit 5 test extensions store state into JUnit context storage at the test level (as opposed to method level), they use the class as a key rather than the class instance:
Multithreaded tests could easily lose track of storage. This is more of a theoretical issue, since AndHow cannot really support parallelized testing due to the singleton model.
Might also rename the accessor methods getPerTestInstanceNamespace.
The text was updated successfully, but these errors were encountered:
When JUnit 5 test extensions store state into JUnit context storage at the test level (as opposed to method level), they use the class as a key rather than the class instance:
andhow/andhow-junit5-extensions/src/main/java/org/yarnandtail/andhow/junit5/ext/ExtensionBase.java
Line 23 in d632675
Multithreaded tests could easily lose track of storage. This is more of a theoretical issue, since AndHow cannot really support parallelized testing due to the singleton model.
Might also rename the accessor methods getPerTestInstanceNamespace.
The text was updated successfully, but these errors were encountered: