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

ru.yandex.qatools.allure.events.TestSuiteStartedEvent Maven / Gradle / Ivy

There is a newer version: 1.4.0.RC9
Show newest version
package ru.yandex.qatools.allure.events;

import ru.yandex.qatools.allure.model.TestSuiteResult;

/**
 * @author Dmitry Baev [email protected]
 *         Date: 11.11.13
 */
public class TestSuiteStartedEvent extends AbstractTestSuiteStartedEvent {

    public TestSuiteStartedEvent(String uid, String name) {
        setUid(uid);
        setName(name);
    }

    @Override
    public void process(TestSuiteResult testSuite) {
        testSuite.setStart(System.currentTimeMillis());
        testSuite.setName(getName());
        testSuite.setTitle(getTitle());
        testSuite.setDescription(getDescription());
        testSuite.setLabels(getLabels());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy