Sebastian Schaffert created MARMOTTA-193:
--------------------------------------------
Summary: Offer better test logging
Key: MARMOTTA-193
URL: https://issues.apache.org/jira/browse/MARMOTTA-193
Project: Marmotta
Issue Type: Bug
Components: Build Environment
Reporter: Sebastian Schaffert
Assignee: Sebastian Schaffert
Priority: Minor
The tests currently offer bad logging messages. Each test should add a rule like
final Logger logger =
LoggerFactory.getLogger(PersistenceTest.class);
@Rule
public TestWatcher watchman = new TestWatcher() {
/**
* Invoked when a test is about to start
*/
@Override
protected void starting(Description description) {
logger.info("{} being run...", description.getMethodName());
}
};
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira