Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<target name="jtest-monitor" depends="build">
 <jtest:monitor>
  <coverage>
   <testIncludes>
    <testInclude>**/tests/**</testInclude>
   </testIncludes>
  </coverage>
 </jtest:monitor>
</target>
<target name=" build">
 <ant target="build" dir="${basedir}" antfile="build.xml" />
</target>


※ターゲットの詳細な定義方法は ユーザーガイド をご参照ください。
jtest:monitor を呼び出すため以下のコマンドを実行します。

Code Block
ant –f jtest.xml jtest-monitor


Gradle の場合

Code Block
gradlew jtest-monitor –I [INSTALL]/integration/gradle/init.gradle


jtest:monitor ゴール/タスクを実行すると monitor.zip パッケージを作成します。それぞれのビルドシステムごとに作成される場所が異なりますのでご注意ください。

...