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

com.relevantcodes.extentreports.IReporter Maven / Gradle / Ivy

The newest version!
/*
* Copyright (c) 2015, Anshoo Arora (Relevant Codes).  All rights reserved.
* 
* Copyrights licensed under the New BSD License.
* 
* See the accompanying LICENSE file for terms.
*/

package com.relevantcodes.extentreports;

import com.relevantcodes.extentreports.model.Test;

public interface IReporter {
    void start(Report report);
    void stop();
    void flush();
    void addTest(Test test);
    void setTestRunnerLogs();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy