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 @@ -51,13 +51,13 @@
]
},
"demaconsulting.reviewmark": {
"version": "1.2.0",
"version": "1.3.1",
"commands": [
"reviewmark"
]
},
"demaconsulting.fileassert": {
"version": "0.4.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 @@ -17,5 +17,5 @@ sections:
tags: [ots]
tests:
- FileAssert_Results
- FileAssert_Exists
- FileAssert_Contains
- FileAssert_File
- FileAssert_Text
8 changes: 4 additions & 4 deletions docs/verification/ots/fileassert.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ produces test result files. A TRX results file with correctly classified pass an
expected.
This scenario is tested by `FileAssert_Results`.

**FileAssert_Exists**: FileAssert self-validation exercises a test configuration using a glob
**FileAssert_File**: FileAssert self-validation exercises a test configuration using a glob
pattern to assert file existence, verifying that FileAssert correctly detects present files. The
assertion is expected to pass when the specified file is present.
This scenario is tested by `FileAssert_Exists`.
This scenario is tested by `FileAssert_File`.

**FileAssert_Contains**: FileAssert self-validation exercises a test configuration using a
**FileAssert_Text**: FileAssert self-validation exercises a test configuration using a
`contains` assertion to verify file content, verifying that FileAssert correctly checks file
content. The assertion is expected to pass when the specified content is present.
This scenario is tested by `FileAssert_Contains`.
This scenario is tested by `FileAssert_Text`.
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@
<!-- Runtime Dependencies -->
<ItemGroup>
<PackageReference Include="DemaConsulting.TestResults" Version="1.9.0" />
<PackageReference Include="YamlDotNet" Version="18.0.0" />
<PackageReference Include="YamlDotNet" Version="18.1.0" />
<PackageReference Include="Microsoft.Extensions.FileSystemGlobbing" Version="10.0.9" />
</ItemGroup>

<!-- Build Tool Dependencies -->
<ItemGroup>
<PackageReference Include="Microsoft.Sbom.Targets" Version="4.1.5" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.300" PrivateAssets="All" />
<PackageReference Include="Polyfill" Version="10.10.0" PrivateAssets="All" />
<PackageReference Include="Polyfill" Version="10.11.1" PrivateAssets="All" />
</ItemGroup>

<!-- Code Analysis Dependencies -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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