Concordion - ตั้งค่า Command
คำสั่ง 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" จากนั้นเรียกวิธี sum () ด้วยพารามิเตอร์เป็น #firstNumber และ #secondNumber แล้วตรวจสอบว่า ผลลัพธ์เท่ากับ "5"
ตัวอย่าง
ให้เรามี Eclipse IDE ที่ใช้งานได้และทำตามขั้นตอนด้านล่างเพื่อสร้างแอปพลิเคชัน Concordion -
ขั้นตอน | คำอธิบาย |
---|---|
1 | สร้างโปรเจ็กต์ด้วยชื่อที่สอดคล้องกันและสร้างแพ็คเกจcom.tutorialspointภายใต้ไฟล์src โฟลเดอร์ในโครงการที่สร้างขึ้น |
2 | เพิ่มต้องห้องสมุด Concordion ใช้เพิ่มภายนอกไหตัวเลือกตามที่อธิบายไว้ในConcordion - การใช้งานครั้งแรกในบท |
3 | สร้าง Java class Systemภายใต้แพ็กเกจcom.tutorialspoint |
4 | สร้างคลาส Fixture SystemFixtureภายใต้แพ็คเกจspecs.tutorialspoint |
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 คือผลลัพธ์ของการทดสอบการทำงานร่วมกัน