8

SoapUIワークスペースには、いくつかのプロジェクトがあります。

これらのそれぞれには、いくつかのテストケースを含む1つ以上のテストスイートが含まれる場合があります

各プロジェクトを拡張してから、テストスイートを開き、実行し、次のプロジェクトを開くなど、非常に時間がかかります。これは、ローカルでテストしてから、テストボックスを再度テストするために行います。

SoapUIワークスペースのすべてのテストをワンクリックで実行できる方法はありますか?

4

3 に答える 3

6

私はまだver。で方法を見つけていません。3.5.1。

次の手順を実行すると、時間を少し節約できます。

プロジェクトをダブルクリックします。[テストスイート]タブをクリックします。[実行]ボタンをクリックします。

これにより、プロジェクト内のすべてのスイートが実行されます。

于 2010-08-23T16:07:14.977 に答える
4

You could just write a script to run all the tests using the command line.

For example if you have 2 Projects, Project1 and Project2, which each contain 2 test suites you could write a simple script like this:

#!/bin/bash
./testrunner.sh -sUnitTesting -f Project1-soapui-project.xml
./testrunner.sh -sUnitTesting2 -f Project1-soapui-project.xml
./testrunner.sh -sotherTests -f Project2-soapui-project.xml
./testrunner.sh -sotherTests2 -f Project2-soapui-project.xml
于 2010-08-26T00:44:50.567 に答える