Concordion - ดำเนินการคำสั่ง
ใช้คำสั่ง Concordion execute รันการทำงานของ concordion fixture พิจารณาข้อกำหนดต่อไปนี้ -
The sum of two numbers 2 and 3 will be 5.
หากเราต้องการเขียนข้อมูลจำเพาะสำหรับฟังก์ชัน sum ซึ่งจะยอมรับตัวเลขสองตัวและแสดงผลรวมของมันข้อกำหนดจะเป็นดังนี้ -
<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>
เมื่อ Concordion แยกวิเคราะห์เอกสารจะตั้งค่าตัวแปรชั่วคราว #firstNumber เป็นค่า "2" และ #secondNumber เป็นค่า "3" จากนั้นเรียกใช้เมธอด sum () ด้วยพารามิเตอร์เป็น #firstNumber และ #secondNumber โดยใช้การดำเนินการ คำสั่งและตั้งค่าผลลัพธ์เป็นตัวแปร #result และตรวจสอบว่าตัวแปร #result เท่ากับ "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 Test หากทุกอย่างเรียบร้อยดีกับแอปพลิเคชันของคุณมันจะให้ผลลัพธ์ดังต่อไปนี้ -
C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\concordion\specs\tutorialspoint\System.html
Successes: 1, Failures: 0
System.html คือผลลัพธ์ของการทดสอบ Concordion