readme.txt for c4ju
===================

--------------------------------------------------
Name

    c4ju - CCCC output xml to junit xml

--------------------------------------------------
Usage

    c4ju [options] file1.xml ...
    Process files listed on command line.
    If the filenames include '-', read a list of files from standard input.

--------------------------------------------------
Command Line Options

    --help                  : generate help message.
    --out_xmlfile=<path>    : path of xml report.
    --filter=<path>         : path of test filter xml.

--------------------------------------------------
Description

CCCC oxml  filter xml ɋLqŃeXgs
xml report o͂܂B

==== sample filter xml ====
<?xml version="1.0" encoding="utf-8"?>
<CCCC_Project>
<module_summary>
<lines_of_code value="value &lt;= 120" />
</module_summary>
<procedural_detail>
<member_function>
<lines_of_code value="value &lt;= 30"/>
<McCabes_cyclomatic_complexity value="value &lt;= 30" />
<lines_of_comment />
<lines_of_code_per_line_of_comment value="value &lt;= 5" />
<McCabes_cyclomatic_complexity_per_line_of_comment value="value &lt;= 30" />
</member_function>
</procedural_detail>
</CCCC_Project>
============================

Ήm[h̑ɎLq܂B
value ɃeXgΏۂ̑l܂B

--------------------------------------------------
Jenkins Job Sample

======= job bat file =======

SET TARGETDIR=%WORKSPACE%\.cccc
cd /d %TARGETDIR%
dir /s /b *.xml | call c4ju --filter="filter.xml" --out_xmlfile="%WORKSPACE%\test_default.xml" -

============================

