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 を呼び出すため以下のコマンドを実行します。

...