51Testing软件测试论坛

标题: 可以给个testsuite的Demo吗 [打印本页]

作者: 47385024    时间: 2010-6-18 17:45
标题: 可以给个testsuite的Demo吗
运行多个测试脚本+生成reportng的Demo


我想很多人都会需要的   呵呵

谢谢

[ 本帖最后由 小米啊 于 2010-6-18 19:05 编辑 ]
作者: goal1860    时间: 2010-6-21 08:14
I am encouraging to use testNG, which is much convenient than JUnit in organizing your java based test cases:

<suite name="suite">
       
        <test name="Simple example">
                <groups>
                        <run>
                                <include name="functional" />
                                <exclude name="debug" />
                               
                        </run>
                </groups>

                <classes>
                        <class name="com.domain.yours.TestA" />
                        <class name="com.domain.yours.TestB" />
               
                </classes>
        </test>
</suite>
作者: goal1860    时间: 2010-6-21 08:16
BTW, testNG is capable to generate JUnit reporting as well. Look at official site for more details.
作者: 47385024    时间: 2010-6-22 09:50
thanks




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2