You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mikepoz59 edited this page Jun 5, 2019
·
5 revisions
package com.tmobile.ct.codeless.plugin.reporting;
//imports here
import com.tmobile.ct.codeless.core.*;
public class ReportingPluginHandlerService extends TestReporter {
// local class properties as needed
public ReportingPluginHandlerService () {
// constructor code as appropriate
}
public void beforeExecution(Execution execution) {
// Before execution code as appropriate
}
public void beforeSuite(Suite suite) {
// Before suite code as appropriate
}
public void beforeTest(Test test) {
// Before testcode as appropriate
}
public void beforeStep(Step step) {
// Before step code as appropriate
}
public void afterStep(Step step) {
// After step code as appropriate
}
public void afterTest(Test test) {
// After test code as appropriate
}
public void afterSuite(Suite suite) {
// After suite code as appropriate
}
public void afterExecution(Execution execution) {
// After execution code as appropriate
}
}