-
-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into 8.1.20240115
- Loading branch information
Showing
3 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
src/main/resources/properties/default/TestNG.properties.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
################################################### | ||
##### SHAFT_Engine: TestNG.properties | ||
################################################### | ||
setParallel=NONE | ||
setThreadCount=1 | ||
setVerbose=1 | ||
setPreserveOrder=true | ||
setGroupByInstances=true | ||
setDataProviderThreadCount=1 | ||
#Test Suite Timeout in minutes | ||
testSuiteTimeout=1440 | ||
################################################### | ||
##### END of PropertiesHelper File | ||
################################################### |
31 changes: 31 additions & 0 deletions
31
src/main/resources/properties/default/cucumber.properties.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
############# | ||
# https://cucumber.io/docs/cucumber/api/#list-configuration-options | ||
############## | ||
cucumber.ansi-colors.disabled=false | ||
#true or false. default: false | ||
cucumber.execution.dry-run=false | ||
#true or false. default: false | ||
cucumber.execution.limit= | ||
#number of scenarios to execute (CLI only). | ||
cucumber.execution.order=lexical | ||
#lexical, reverse, random or random:[seed] (CLI only). default: lexical | ||
cucumber.execution.strict=true | ||
#true or false. default: true. | ||
cucumber.execution.wip=false | ||
#true or false. default: false. | ||
cucumber.features=src/test/resources | ||
#comma separated paths to feature files. example: path/to/example.feature, path/to/other.feature | ||
cucumber.filter.name= | ||
#regex. example: .*Hello.* | ||
cucumber.filter.tags= | ||
#tag expression. example: @smoke and not @slow | ||
cucumber.glue=customCucumberSteps, com.shaft.cucumber | ||
# comma separated package names. example: com.example.glue | ||
cucumber.plugin=pretty, json:allure-results/cucumber.json, html:allure-results/cucumberReport.html, com.shaft.listeners.CucumberTestRunnerListener | ||
# comma separated plugin strings. example: pretty, json:path/to/report.json | ||
cucumber.object-factory= | ||
#object factory class name. example: com.example.MyObjectFactory | ||
cucumber.snippet-type=underscore | ||
#underscore or camelcase. default: underscore | ||
cucumber.publish.quiet=true | ||
CUCUMBER_PUBLISH_ENABLED=false |
18 changes: 18 additions & 0 deletions
18
src/main/resources/properties/default/log4j2.properties.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name=PropertiesConfig | ||
appender.console.type=Console | ||
appender.console.name=STDOUT | ||
appender.console.layout.type=PatternLayout | ||
appender.console.layout.disableAnsi=false | ||
appender.console.layout.pattern=%highlight{[%p]}{FATAL=red blink, ERROR=red bold, WARN=yellow bold, INFO=fg_#0060a8 bold, DEBUG=fg_#43b02a bold, TRACE=black} %style{%m }%style{| %-logger}{bright_black} %style{- %-thread}{bright_black} %style{- %d{hh:mm:ss a}}{bright_black} %n | ||
appender.console.filter.threshold.type=ThresholdFilter | ||
appender.console.filter.threshold.level=info | ||
appender.file.type=File | ||
appender.file.name=LOGFILE | ||
appender.file.fileName=target/logs/log4j.log | ||
appender.file.layout.type=PatternLayout | ||
appender.file.layout.pattern=[%-5level] %d{yyyy-MM-dd HH:mm:ss.SSS} [%t] %c{1} - %msg%n | ||
appender.file.filter.threshold.type=ThresholdFilter | ||
appender.file.filter.threshold.level=debug | ||
rootLogger=debug, STDOUT, LOGFILE | ||
logger.app.name=org.apache.http.impl.client | ||
logger.app.level=WARN |