Skip to content

Commit

Permalink
Merge branch 'main' into 8.1.20240115
Browse files Browse the repository at this point in the history
  • Loading branch information
MohabMohie authored Feb 10, 2024
2 parents 1a9b019 + 57ed4e1 commit 74103c1
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/main/resources/properties/default/TestNG.properties.txt
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 src/main/resources/properties/default/cucumber.properties.txt
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 src/main/resources/properties/default/log4j2.properties.txt
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

0 comments on commit 74103c1

Please sign in to comment.