Concordion-setコマンド
Concordion setコマンドは、他のConcordionコマンドで使用できる一時変数を格納するために使用されます。
次の要件を考慮してください-
The Sum of two numbers 2 and 3 will be 5.
数値2と3をパラメーターとして使用し、それらをパラメーターとしてsum関数に渡して、システムから返される結果と照合できるようにする場合は、数値の周囲のスパンタグ内でconcordion:setコマンドを使用できます。
<p>The Sum of two numbers <span concordion:set = "#firstNumber">2</span>
and <span concordion:set = "#secondNumber">3</span> will be
<span concordion:assertEquals = "sum(#firstNumber, #secondNumber)">5
</span>.</p>
Concordionがドキュメントを解析するとき、一時変数#firstNumberを値「2」に設定し、#secondNumberを値「3」に設定してから、パラメーターを#firstNumberおよび#secondNumberとしてsum()メソッドを呼び出し、それを確認します。結果は「5」に等しくなります。
例
動作するEclipseIDEを配置し、以下の手順に従ってConcordionアプリケーションを作成しましょう-
ステップ | 説明 |
---|---|
1 | concordionという名前のプロジェクトを作成し、の下にパッケージcom.tutorialspointを作成します。src 作成したプロジェクトのフォルダ。 |
2 | 「Concordion-最初のアプリケーション」の章で説明されているように、「外部JARの追加」オプションを使用して必要なConcordionライブラリーを追加します。 |
3 | com.tutorialspointパッケージの下にJavaクラスSystemを作成します。 |
4 | specs.tutorialspointパッケージの下にFixtureクラスSystemFixtureを作成します。 |
5 | 仕様のHTMLの作成System.htmlを下specs.tutorialspointのパッケージ。 |
6 | 最後のステップは、すべてのJavaファイルと仕様ファイルのコンテンツを作成し、以下で説明するようにアプリケーションを実行することです。 |
System.javaファイルの内容は次のとおりです-
package com.tutorialspoint;
public class System {
public int sum(int firstNumber, int secondNumber) {
return firstNumber + secondNumber;
}
}
以下はSystemFixture.javaファイルの内容です-
package specs.tutorialspoint;
import org.concordion.integration.junit4.ConcordionRunner;
import org.junit.runner.RunWith;
import com.tutorialspoint.System;
@RunWith(ConcordionRunner.class)
public class SystemFixture {
System system = new System();
public int sum(int firstNumber, int secondNumber) {
return system.sum(firstNumber, secondNumber);
}
}
以下はSystem.htmlファイルの内容です-
<html xmlns:concordion = "http://www.concordion.org/2007/concordion">
<head>
<link href = "../concordion.css" rel = "stylesheet" type = "text/css" />
</head>
<body>
<h1>Calculator Specifications</h1>
<p>We are building online calculator support in our website.</p>
<p>Following is the requirement to add two numbers:</p>
<div class = "example">
<h3>Example</h3>
<p>The Sum of two numbers <span concordion:set = "#firstNumber">2</span>
and <span concordion:set = "#secondNumber">3</span> will be
<span concordion:execute = "#result = sum(#firstNumber, #secondNumber)"></span>
<span concordion:assertEquals = "#result">5</span>.</p>
</div>
</body>
</html>
ソースファイルと仕様ファイルの作成が完了したら、アプリケーションをJUnitテストとして実行しましょう。アプリケーションに問題がない場合は、次の結果が得られます-
C:\DOCUME>1\ADMINI>1\LOCALS>1\Temp\concordion\specs\tutorialspoint\System.html
Successes: 1, Failures: 0
System.htmlは、concordion testrunの出力です。