-
Notifications
You must be signed in to change notification settings - Fork 715
New issue
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
Feature/1152 #1153
base: master
Are you sure you want to change the base?
Feature/1152 #1153
Conversation
getRootPage()
provider for custom variables
Hi Michael, Can you update the junit overview page to mention this new feature: |
@@ -416,14 +444,21 @@ protected void addExecutionLogListener(RunNotifier notifier, MultipleTestsRunner | |||
testRunner.addExecutionLogListener(new ConsoleExecutionLogListener()); | |||
} | |||
|
|||
protected WikiPage getRootPage() { | |||
if (this.customVariables==null) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (this.customVariables==null) { | |
if (this.customVariables == null) { |
* @author mwyraz | ||
*/ | ||
public interface CustomVariableProvider { | ||
public Map<String,String> getCustomVariables(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should this method also receive the suiteClass?
Annotation based configuration of a provider class for custom variables. Solves #1152