Skip to content

Commit 2170801

Browse files
committed
Rename thread.count to data.provider.thread.count
1 parent b5a24ae commit 2170801

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Template for [aquality-selenium-java](https://github.com/aquality-automation/aqu
2727
Scenarios from feature files can be executed with TestNG plugin for IDE (Intellij Idea, Eclipse)
2828
or with Maven command ```mvn clean test``` where you can specify all necessary arguments.
2929

30-
If executed with Maven, tests will be run in ```4``` threads. To change the amount of threads add ```-Dthread.count``` property to the command.
31-
E.g. ```mvn clean test -Dthread.count=10```.
30+
If executed with Maven, tests will be run in ```4``` threads. To change the amount of threads add ```-Ddata.provider.thread.count``` property to the command.
31+
E.g. ```mvn clean test -Ddata.provider.thread.count=10```.
3232

3333
### Reporting
3434
Allure Framework is used as a reporting tool. Report data will be placed in ```target/allure-results/``` folder (you can change it in ```allure.properties``` file).

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<properties>
2626
<aspectj.version>1.8.10</aspectj.version>
27-
<thread.count>4</thread.count>
27+
<data.provider.thread.count>4</data.provider.thread.count>
2828
</properties>
2929

3030
<dependencies>
@@ -81,7 +81,7 @@
8181
<properties>
8282
<property>
8383
<name>dataproviderthreadcount</name>
84-
<value>${thread.count}</value>
84+
<value>${data.provider.thread.count}</value>
8585
</property>
8686
</properties>
8787
</configuration>

0 commit comments

Comments
 (0)