9 lines
214 B
Bash
Executable file
9 lines
214 B
Bash
Executable file
#!/bin/bash
|
|
|
|
java -cp "lib/test/*" org.testng.TestNG 2>/dev/null |\
|
|
grep "^ -.*" |\
|
|
sed -e "s/ -/-/" -e "s/, -/\n-/" |\
|
|
sed "/testRunFactory/d" |\
|
|
sort |\
|
|
sed '$s/,//' > "src/test/resources/testng-args.txt"
|
|
|