com.aventstack.extentreports.AnalysisStrategy Maven / Gradle / Ivy
package com.aventstack.extentreports;
/**
* Strategy used to generate statistics for the current run
*
* Available strategies are:
*
* - BDD: Strategy for BDD-style (Gherkin) tests
* - CLASS: Used for 2 levels: Class, Test
* - SUITE: Used for 3 levels: Suite, Class, Test
* - TEST: Used for 1 level only: Test
*
*/
public enum AnalysisStrategy {
BDD,
CLASS,
SUITE,
TEST
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy