Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to the "vectorcastTestExplorer" extension will be documented in this file.

## [1.0.29] - 2026-02-11

### Added
- Added a Test Review for Requirement Tests

## [1.0.28] - 2026-01-27

### Added
Expand Down
22 changes: 21 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vectorcasttestexplorer",
"displayName": "VectorCAST Test Explorer",
"description": "VectorCAST Test Explorer for VS Code",
"version": "1.0.28",
"version": "1.0.29",
"license": "MIT",
"repository": {
"type": "git",
Expand Down Expand Up @@ -229,6 +229,11 @@
"category": "VectorCAST Test Explorer",
"title": "Open Source File under Test"
},
{
"command": "vectorcastTestExplorer.openReqsCoverageReview",
"category": "VectorCAST Test Explorer",
"title": "Open Requirements Coverage Review"
},
{
"command": "vectorcastTestExplorer.insertBasisPathTests",
"category": "VectorCAST Test Explorer",
Expand Down Expand Up @@ -458,6 +463,12 @@
"type": "string",
"description": "Path to folder containing Reqs2X executables (reqs2tests, code2reqs and panreq), if unset search for the executables in the main VectorCAST installation folder instead"
},
"vectorcastTestExplorer.reqs2x.enableRequirementsCoverageReview": {
"order": 2,
"type": "boolean",
"description": "Enable the Requirements Coverage Review feature (requires a Requirements Beta release)",
"default": false
},
"vectorcastTestExplorer.reqs2x.decomposeRequirements": {
"type": "boolean",
"order": 3,
Expand Down Expand Up @@ -771,6 +782,10 @@
{
"command": "vectorcastTestExplorer.openSourceFileFromTestpaneCommand",
"when": "never"
},
{
"command": "vectorcastTestExplorer.openReqsCoverageReview",
"when": "never"
},
{
"command": "vectorcastTestExplorer.insertBasisPathTests",
Expand Down Expand Up @@ -1080,6 +1095,11 @@
"group": "vcast.enviroManagement",
"when": "testId =~ /^vcast:.*$/ && !(testId =~ /^.*<<COMPOUND>>.*$/) && !(testId =~ /^.*<<INIT>>.*$/) && !(testId =~ /.*coded_tests_driver.*/) && testId not in vectorcastTestExplorer.vcastUnbuiltEnviroList && testId not in vectorcastTestExplorer.vcastEnviroList"
},
{
"command": "vectorcastTestExplorer.openReqsCoverageReview",
"group": "vcast.enviroManagement",
"when": "testId =~ /^vcast:.*$/ && !(testId =~ /^.*<<COMPOUND>>.*$/) && !(testId =~ /^.*<<INIT>>.*$/) && !(testId =~ /.*coded_tests_driver.*/) && testId not in vectorcastTestExplorer.vcastUnbuiltEnviroList && testId not in vectorcastTestExplorer.vcastEnviroList && testId in vectorcastTestExplorer.testNodesWithRequirements && config.vectorcastTestExplorer.reqs2x.enableRequirementsCoverageReview"
},
{
"command": "vectorcastTestExplorer.insertBasisPathTests",
"group": "vcast.testGeneration",
Expand Down
Loading