-
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 LOBSTER tracing policy (#194)
Adjust tracing policy to reflect requirement levels and measure the coverage The requirements-to-test coverage per system requirements and per unit requirements is done separately Introduced new levels in the tracing policy: - system requirement - system test - software requirement - software test - code
- Loading branch information
1 parent
90a63d0
commit c348d47
Showing
11 changed files
with
34 additions
and
399 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.