0
のUbuntuで、コマンドライン経由のTestNGを実行しようとしたとき、それははUbuntuが
java –cp "bin:/home/john/selenium-lib/*" org.testng.TestNG src/testing.xml
Error: Could not find or load main class –cp
のsrc/TestCaseクラス*/
パッケージのテストをスローに動作していないcommadlineてTestNGの実行。
import org.testng.annotations.Test; public class TestCase { String message = "Hello World"; @Test public void testPrintMessage() { System.out.println("Invoked testString " + message); } }
のsrc/testing.xml
Krishnan Mahadevanは、コピー/ペースト時にハイフン( - )を特殊文字として扱っていたことに感謝しています。私の悪い私はそれを逃した – Axe