All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aludratest.log4testing.output.TestLogWriter Maven / Gradle / Ivy

Go to download

A configurable Logging Framework for generic test execution logging. Supports several output formats, including XML and HTML, and can be connected to different testing frameworks.

There is a newer version: 1.0.2
Show newest version
package org.aludratest.log4testing.output;

import java.util.Properties;

import org.aludratest.log4testing.TestCaseLog;
import org.aludratest.log4testing.TestSuiteLog;
import org.aludratest.log4testing.config.InvalidConfigurationException;

/**
 * @author falbrech
 * 
 */
public interface TestLogWriter {

	void init(Properties properties) throws InvalidConfigurationException;

	void startingTestProcess(TestSuiteLog rootSuite) throws LogWriterException;

	void startingTestSuite(TestSuiteLog suite) throws LogWriterException;

	void startingTestCase(TestCaseLog testCase) throws LogWriterException;

	void finishedTestCase(TestCaseLog testCase) throws LogWriterException;

	void finishedTestSuite(TestSuiteLog suite) throws LogWriterException;

	void finishedTestProcess(TestSuiteLog rootSuite) throws LogWriterException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy