-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust tracing policy to reflect requirement levels and messure the coverage
- Loading branch information
1 parent
a1d43cc
commit 59e102e
Showing
12 changed files
with
36 additions
and
401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
req.Software_Requirement { | ||
description = description | ||
} |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
requirements "Specification" { | ||
source: "requirements.lobster"; | ||
requirements "System Requirement" { | ||
source: "system_requirements.lobster"; | ||
} | ||
|
||
requirements "Software Requirement" { | ||
source: "software_requirements.lobster"; | ||
trace to: "System Requirement"; | ||
} | ||
|
||
implementation "Code" { | ||
source: "code.lobster"; | ||
trace to: "Specification"; | ||
trace to: "Software Requirement"; | ||
} | ||
|
||
activity "Test" { | ||
activity "System Test" { | ||
source: "system-tests.lobster"; | ||
trace to: "System Requirement"; | ||
} | ||
|
||
activity "Software Test" { | ||
source: "unit-tests.lobster"; | ||
trace to: "Specification"; | ||
trace to: "Software Requirement"; | ||
} |
File renamed without changes.
Oops, something went wrong.