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

org.catools.common.logger.converters.CTotalFailedTestCountConverter Maven / Gradle / Ivy

The newest version!
package org.catools.common.logger.converters;

import org.apache.logging.log4j.core.config.plugins.Plugin;
import org.apache.logging.log4j.core.pattern.ConverterKeys;
import org.apache.logging.log4j.core.pattern.PatternConverter;
import org.catools.common.testng.listeners.CExecutionStatisticListener;

@Plugin(name = "CTotalFailedTestCountConverter", category = PatternConverter.CATEGORY)
@ConverterKeys({"ETF"})
public class CTotalFailedTestCountConverter extends CBaseExecutionStatisticConverter {

  /**
   * Constructs an instance of CTotalFailedTestCountConverter.
   *
   * @param stringFormat format to be used. defaults to "%d"
   */
  protected CTotalFailedTestCountConverter(final String stringFormat) {
    super("Total Failed", "ETF", stringFormat, () -> CExecutionStatisticListener.getTotalFailed());
  }

  public static CTotalFailedTestCountConverter newInstance(final String[] options) {
    return new CTotalFailedTestCountConverter(validateAndGetOption(options));
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy