-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add additional information to report #179
Comments
We need to introduce a new
This Info model could be added to the Info info = new Info("Synchronisation successful", LogLevel.INFO);
context.setInfo("xray.sync.status", info); |
If we add the |
Proposal 2: Add a
|
Final proposal (works best with current implementation). log().info("Prompts a message", Loggable.prompt);
log().info("Sends a message to another MethodContext", MethodContext methodContext);
log().info("Prompt me to method context", Loggable.prompt, MethodContext methodContext); |
Is your feature request related to a problem? Please describe.
The Testerra legacy report provided the
ReportInfo
class to add some information to the dashboard or to method details page.ReportNG does not have such a feature to personalize the report.
Describe the solution you'd like
The
ExecutionContext
could hold some meta data as a map. The content of this map can be placed on the dashboard in an extra box.The text was updated successfully, but these errors were encountered: