Skip to content

Commit

Permalink
#139 - print a one line Neodymium version information at runtime
Browse files Browse the repository at this point in the history
Improved wording
  • Loading branch information
Marcel Pfotenhauer committed Oct 27, 2020
1 parent a18f6ee commit 881dc9a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ public class NeodymiumCucumberRunner extends NeodymiumCucumberWrapper
public NeodymiumCucumberRunner(Class<?> clazz) throws InitializationError, IOException
{
super(clazz);
LOGGER.info("Running a test using Neodymium Library (version: " + Neodymium.getNeodymiumVersion()
+ "), see also https://github.com/Xceptance/neodymium-library");
LOGGER.info("This test uses Neodymium Library (version: " + Neodymium.getNeodymiumVersion()
+ "), MIT License, more details on https://github.com/Xceptance/neodymium-library");
}

@Override
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/xceptance/neodymium/NeodymiumRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ public NeodymiumRunner(Class<?> clazz) throws InitializationError
{
super(clazz);
SelenideLogger.addListener(LISTENER_NAME, new AllureSelenide());
LOGGER.info("Running a test using Neodymium Library (version: " + Neodymium.getNeodymiumVersion()
+ "), see also https://github.com/Xceptance/neodymium-library");
LOGGER.info("This test uses Neodymium Library (version: " + Neodymium.getNeodymiumVersion()
+ "), MIT License, more details on https://github.com/Xceptance/neodymium-library");
}

public enum DescriptionMode
Expand Down

0 comments on commit 881dc9a

Please sign in to comment.