CTS:
1.测试整个CTS:
run cts --plan CTS
2.测试某个包:
run cts -p package_name3.单项测试某个类:
run cts -c class_name
4.单项测试某个case:
run cts -c class_name -m method_name
更多的测试命令可从help获取
GTS:
1.单项测试某个类的某个方法:
run xts -c class_name -m method_name
2.单项测试某个类:
run xts -c class_name
3.测试整个GTS:
run xts --plan XTS