-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtest-orchestration.html
51 lines (51 loc) · 3.02 KB
/
test-orchestration.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>Eiffel | Sepia Implementation Architecture | Test Orchestration</title>
<meta name="theme-color" content="#ffffff">
<link rel="apple-touch-icon" sizes="180x180" href="./images/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon/favicon-16x16.png">
<link rel="manifest" href="./manifest.json">
<link rel="mask-icon" href="./images/favicon/safari-pinned-tab.svg" color="#5bbad5">
<link rel='stylesheet' href='./css/index.css'>
<meta name="theme-color" content="#ffffff">
<script src="./js/csi.min.js"></script>
</head>
<body class="container">
<div data-include="includes/header.html"></div>
<section>
<div>
<h1 class="section-heading">Test Orchestration</h1>
<p class="section-paragraph">The Test Orchesration actor role is responsible for triggering and/or canceling test case executions, and grouping them into test suites. This may be done directly based on some internal logic or static test case lists, or it may be informed by Test Case Execution Recipes created by the <a href="test-execution-recipe-creation.html">Test Execution Recipe Creation</a> role.</p>
</div>
</section>
<section>
<div>
<h1 class="section-heading">Implementations</h1>
<ul style="list-style-type:none">
<li><a href="https://github.com/eiffel-community/etos">ETOS</a></li>
</ul>
</div>
</section>
<section>
<div>
<h1 class="section-heading">Event Authorship</h1>
<ul style="list-style-type:none">
<li><a href="https://github.com/eiffel-community/eiffel/blob/edition-arica/eiffel-vocabulary/EiffelTestSuiteStartedEvent.md">EiffelTestSuiteStartedEvent</a></li>
<li><a href="https://github.com/eiffel-community/eiffel/blob/edition-arica/eiffel-vocabulary/EiffelTestSuiteFinishedEvent.md">EiffelTestSuiteFinishedEvent</a></li>
<li><a href="https://github.com/eiffel-community/eiffel/blob/edition-arica/eiffel-vocabulary/EiffelTestCaseTriggeredEvent.md">EiffelTestCaseTriggeredEvent</a></li>
<li><a href="https://github.com/eiffel-community/eiffel/blob/edition-arica/eiffel-vocabulary/EiffelTestCaseCanceledEvent.md">EiffelTestCaseCanceledEvent</a></li>
</ul>
</div>
</section>
<section>
<div>
<h1 class="section-heading">Collaborators</h1>
<p class="section-paragraph">The Test Orchestration role can be triggered by the <a href="activity-orchestration.html">Activity Orchestration</a> role, and it in turn triggers the <a href="test-case-execution.html">Test Case Execution</a> role. A possible sequence diagram of all the actor roles involved in test execution is shown below.</p>
<object class="figure" type="image/svg+xml" data="svg/sequence-diagrams/test-execution.svg"></object>
</div>
</section>
<div data-include="includes/footer.html"></div>
</body>
</html>