c2xml

[Introduction]
Generate TestLink testcase XML from C/C++ source codes.


[Usage]

* On command line

1. Write JavaDoc tags for TestLink in unit test source codes.

  /**
   * @tltestcase <testcase name>
   * @tlsummary <testcase summary>
   * @tlsteps <testcase steps>
   * @tlexpectedresults <expected results>
   * @tlkeyword <linked keyword>
   * @tlnotes <keyword's notes>
   */

2. Compile c2xml.cpp.

  g++ c2xml.cpp -o c2xml

3. Put following commands.

  c2xml <target_unit_test_code_filename>


* With Doxygen

Add following parameter in Doxygen setting file (ex. Doxyfile).

  INPUT_FILTER = c2xml


[Change Log]

2007/10/01 0.1
The First release.


----------
c2xml

[はじめに]
C/C++のソースコードからTestLinkのテストケースを作成します。


[使用法]

* コマンドラインでの使用

1. TestLink用のJavaDocタグをUnitテストのソースコードに記述してください。

  /**
   * @tltestcase <テストケース名>
   * @tlsummary <テストの概要>
   * @tlsteps <テスト手順>
   * @tlexpectedresults <期待される結果>
   * @tlkeyword <キーワード>
   * @tlnotes <キーワードの説明>
   */

2. Compile c2xml.cpp.

  g++ c2xml.cpp -o c2xml

3. 以下のコマンドを入力してください。

  c2xml <対象となるUnitテストコードのファイル名>


* Doxygenからの使用

Doxygenの設定ファイル(例えば、Doxyfile)に以下のパラメータを追加してください。

  INPUT_FILTER = c2xml


[更新履歴]

2007/10/01 0.1
新規作成。
