bichromate.dataStore.testHistory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Bichromate Show documentation
Show all versions of Bichromate Show documentation
Java, Selenium, Appium, Winium, Extend, and TestNG automated testing framework. Bichromate integrates the best of these frameworks and takes automation to the next level. With Bichromate there is one function call that builds any type of Web,IOS Mobile, Android, and Windows App driver on any platform (Windows, Mac, Linux). From Local web drivers, to SauceLabs, Browserstack, and Selenium grid. Build data driven tests is never easier.
Bichromate also gives you built in Factories that, access DBs, Video Capture, FTP, POM Generation, Hilite element.
package bichromate.dataStore;
import java.time.LocalDate;
/**
* testHistory is a data store used by testExecutionFactory to store execution history from the testExecution log file.
*
* @author davidwramer
* @version 1.0
*/
public class testHistory {
public String testName;
public LocalDate firstTestDate;
public LocalDate lastTestDate;
public String version;
public int totalPassed = 0;
public int totalFailed = 0;
public int totalSkipped = 0;
public int totalOther = 0;
public float percentagePassed = 0;
}//testHistory