-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.xml
More file actions
41 lines (35 loc) · 1.31 KB
/
config.xml
File metadata and controls
41 lines (35 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<ModualMaqs>
<!-- Generic wait time in milliseconds - AKA how long do you wait for rechecking something -->
<WaitTime>100</WaitTime>
<!-- Generic time-out in milliseconds -->
<Timeout>10000</Timeout>
<!-- Do you want to create logs for your tests
<Log>YES</Log>
<Log>NO</Log>
<Log>OnFail</Log>-->
<Log>YES</Log>
<!--Logging Levels
<LogLevel>VERBOSE</LogLevel>
<LogLevel>INFORMATION</LogLevel>
<LogLevel>GENERIC</LogLevel>
<LogLevel>SUCCESS</LogLevel>
<LogLevel>WARNING</LogLevel>
<LogLevel>ERROR</LogLevel>-->
<LogLevel>VERBOSE</LogLevel>
<!-- Logging Types
<LogType>CONSOLE</LogType>
<LogType>TXT</LogType>
<LogType>HTML</LogType>-->
<LogType>TXT</LogType>
<!-- Log file path - Defaults to build location if no value is defined -->
<FileLoggerPath>./target/logs</FileLoggerPath>
</ModualMaqs>
<MongoMaqs>
<MongoConnectionString>mongodb://localhost:27017</MongoConnectionString>
<MongoDatabase>MongoDatabaseTest</MongoDatabase>
<MongoCollection>MongoTestCollection</MongoCollection>
<MongoTimeout>30</MongoTimeout>
</MongoMaqs>
</configuration>