br.com.behaviortest.api.common.Const Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of behavior-test-api Show documentation
Show all versions of behavior-test-api Show documentation
Projeto para criação e execução dos teste automáticos a nível funcional
package br.com.behaviortest.api.common;
/**
* @author Felipe Rudolfe
* @since 9 de jan de 2020
*/
public class Const {
private Const() {}
public static final String BANNER =
"______ _ _ _____ _ \r\n" +
"| ___ \\ | | (_) |_ _| | | \r\n" +
"| |_/ / ___| |__ __ ___ ___ ___ _ __ | | ___ ___| |_ \r\n" +
"| ___ \\/ _ \\ '_ \\ / _` \\ \\ / / |/ _ \\| '__| | |/ _ \\/ __| __|\r\n" +
"| |_/ / __/ | | | (_| |\\ V /| | (_) | | | | __/\\__ \\ |_ \r\n" +
"\\____/ \\___|_| |_|\\__,_| \\_/ |_|\\___/|_| \\_/\\___||___/\\__|\r\n" +
" \r\n";
public static final String NEXTLINE = "";
public static final String SCRIPT_DATA = "| ID: %s NAME: %s";
public static final String SUITE_DATA = "| SUITE ID: %s SUITE NAME: %s";
public static final String COLLECTED_STEPS = "| COLLECTED STEPS: ";
public static final String EXECUTED_STEPS = "| EXECUTED STEPS: ";
public static final String PRECONDITIONS = "| - PRECONDITIONS:";
public static final String PROCEDURES = "| - PROCEDURES:";
public static final String POSTCONDITIONS = "| - POSTCONDITIONS:";
public static final String STEP = "| %s %s;";
public static final String EVALUATION = "| EVALUATION: %s";
public static final String MOTIVE = "| MOTIVE: %s";
public static final String BARRA =
"=======================================================================================================================";
public static final String PONTO =
".......................................................................................................................";
public static final String TRACO =
"-----------------------------------------------------------------------------------------------------------------------";
public static final String START_EXECUTION = "> STARTING TEST EXECUTION";
public static final String LOAD_TEST_EXECUTION = "> TEST CLASSES FOUND:";
public static final String VALIDATE_BROWSERS = "> VALIDATE BROWSERS:";
public static final String VALIDATE_TEST_IMPLEMENT = "> VALIDATE TEST IMPLEMENT:";
public static final String PARAMS = "> PARAMS FOUND:";
public static final String VALIDATED_TEST = " All tests passed validation";
public static final String RUN_SCRIPTS = "> RUN SCRIPTS:";
public static final String ITEM_CHAR = "•";//"●";
public static final String SUCCESS_CHAR = "✓";//'✔' ;
public static final String FAILURE_CHAR = "×";//= "✘";
}