Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@
]
},
"demaconsulting.reviewmark": {
"version": "1.2.0",
"version": "1.3.1",
"commands": [
"reviewmark"
]
},
"demaconsulting.fileassert": {
"version": "0.5.0",
"version": "0.5.1",
"commands": [
"fileassert"
]
Expand Down
4 changes: 2 additions & 2 deletions docs/reqstream/ots/fileassert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ sections:
primary evidence that document validation is functioning correctly.
tags: [ots]
tests:
- FileAssert_Exists
- FileAssert_Contains
- FileAssert_File
- FileAssert_Text
6 changes: 3 additions & 3 deletions docs/verification/ots/fileassert.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test exercises the tool's internal assertion engine without any external files.

- `fileassert --version` exits with code 0 and prints a version string to standard output.
- `fileassert --help` exits with code 0 and prints usage information to standard output.
- `fileassert --validate` exits with code 0, with `FileAssert_Exists` and `FileAssert_Contains` passing,
- `fileassert --validate` exits with code 0, with `FileAssert_File` and `FileAssert_Text` passing,
confirming the assertion engine is operational.
- All FileAssert assertion steps in the CI pipeline exit with code 0 in each successful build.
- Requirements `TestResults-OTS-FileAssert-Operational` and `TestResults-OTS-FileAssert-Validates`
Expand All @@ -40,7 +40,7 @@ confirming the tool loads and parses arguments correctly. This scenario is confi
`FileAssert_HelpDisplay`.

**File existence assertion**: FileAssert shall assert that files matching a glob pattern exist,
confirming the core file-validation capability. This scenario is confirmed by `FileAssert_Exists`.
confirming the core file-validation capability. This scenario is confirmed by `FileAssert_File`.

**Content assertion**: FileAssert shall assert that file content contains expected text,
confirming text-based validation capability. This scenario is confirmed by `FileAssert_Contains`.
confirming text-based validation capability. This scenario is confirmed by `FileAssert_Text`.
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@
<!-- Build Tool Dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.Sbom.Targets" Version="4.1.5" PrivateAssets="All" />
<PackageReference Include="Polyfill" Version="10.10.0" PrivateAssets="All" />
<PackageReference Include="Polyfill" Version="10.11.1" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.300" PrivateAssets="All" />
<PackageReference Include="DemaConsulting.ApiMark.MSBuild" Version="0.4.7" PrivateAssets="All" />
<PackageReference Include="DemaConsulting.ApiMark.MSBuild" Version="0.4.8" PrivateAssets="All" />
</ItemGroup>

<!-- Code Analysis Dependencies -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.6.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageReference Include="xunit.v3" Version="3.2.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
Expand Down
Loading