Skip to content

Commit eab9bd1

Browse files
committed
📖 Documentation: Remove legacy testngParallel.xml references from README
- Update test execution section to remove outdated file name reference - Update architecture diagram to reference testngSuite.xml - Update running parallel tests section with current command syntax - All references now point to active testngSuite.xml file
1 parent 226d013 commit eab9bd1

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
## 🧪 Test Execution
12-
- Default TestNG suite: `testngSuite.xml` (renamed from testngParallel.xml)
12+
- Default TestNG suite: `testngSuite.xml`
1313
- Android (tag filter required):
1414
```bash
1515
mvn clean test \
@@ -59,7 +59,7 @@ If you maintain a parallel TestNG suite, ensure the file is `testngSuite.xml` an
5959
## 🧵 Thread Safety & Parallel Execution
6060

6161
### Overview
62-
│ │ testngParallel.xml: parallel="methods" thread-count="N" │ │
62+
│ │ testngSuite.xml: parallel="methods" thread-count="N" │ │
6363
│ └──────────────────────────────────────────────────────────────────────────────┘ │
6464
│ │ │
6565
│ ┌───────────────┼───────────────┐ │
@@ -443,13 +443,13 @@ public class Hooks {
443443

444444
```bash
445445
# Enable parallel execution in TestNG
446-
mvn clean test -Dsurefire.suiteXmlFiles=testngParallel.xml
446+
mvn clean test -DsuiteXmlFile=testngSuite.xml -Dplatform=android -Dbrowserstack.config=browserstack-android.yml -Dcucumber.filter.tags="@androidOnly"
447447

448-
# Or via command line
449-
mvn test -Dparallel=methods -DthreadCount=4 -Dplatform=android
448+
# Or via command line with custom thread count
449+
mvn test -Dparallel=methods -DthreadCount=4 -Dplatform=android -DsuiteXmlFile=testngSuite.xml
450450
```
451451

452-
**testngParallel.xml configuration:**
452+
**testngSuite.xml configuration:**
453453
```xml
454454
<suite name="MobileAutomation-BDD-Suite" parallel="methods" thread-count="4">
455455
<listeners>

0 commit comments

Comments
 (0)