From 93fa84284f3b37c69a21621dfd77295aa4ed8a25 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 11:11:24 +0000 Subject: [PATCH 1/2] Bump the nuget-dependencies group with 5 updates Bumps demaconsulting.fileassert from 0.4.0 to 0.5.1 Bumps demaconsulting.reviewmark from 1.2.0 to 1.3.1 Bumps Microsoft.NET.Test.Sdk from 18.6.0 to 18.7.0 Bumps Polyfill from 10.10.0 to 10.11.1 Bumps YamlDotNet from 18.0.0 to 18.1.0 --- updated-dependencies: - dependency-name: demaconsulting.fileassert dependency-version: 0.5.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: demaconsulting.reviewmark dependency-version: 1.3.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: Polyfill dependency-version: 10.11.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies - dependency-name: YamlDotNet dependency-version: 18.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-dependencies ... Signed-off-by: dependabot[bot] --- .config/dotnet-tools.json | 4 ++-- .../DemaConsulting.DictionaryMark.csproj | 4 ++-- .../DemaConsulting.DictionaryMark.Tests.csproj | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 53a729d..337f9ec 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -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" ] diff --git a/src/DemaConsulting.DictionaryMark/DemaConsulting.DictionaryMark.csproj b/src/DemaConsulting.DictionaryMark/DemaConsulting.DictionaryMark.csproj index 8eb4b11..f5c062d 100644 --- a/src/DemaConsulting.DictionaryMark/DemaConsulting.DictionaryMark.csproj +++ b/src/DemaConsulting.DictionaryMark/DemaConsulting.DictionaryMark.csproj @@ -49,7 +49,7 @@ - + @@ -57,7 +57,7 @@ - + diff --git a/test/DemaConsulting.DictionaryMark.Tests/DemaConsulting.DictionaryMark.Tests.csproj b/test/DemaConsulting.DictionaryMark.Tests/DemaConsulting.DictionaryMark.Tests.csproj index e5ead5a..2c4c15c 100644 --- a/test/DemaConsulting.DictionaryMark.Tests/DemaConsulting.DictionaryMark.Tests.csproj +++ b/test/DemaConsulting.DictionaryMark.Tests/DemaConsulting.DictionaryMark.Tests.csproj @@ -35,7 +35,7 @@ all runtime; build; native; contentfiles; analyzers; buildtransitive - + all From dea06a628dfe6771194cda2814ab9fb179e04b99 Mon Sep 17 00:00:00 2001 From: Malcolm Nixon Date: Mon, 29 Jun 2026 22:31:56 -0400 Subject: [PATCH 2/2] Update FileAssert OTS test links to renamed self-validation tests FileAssert renamed its self-validation tests; update the DictionaryMark-OTS-FileAssert requirement and verification doc to link FileAssert_File (was FileAssert_Exists) and FileAssert_Text (was FileAssert_Contains) so reqstream enforcement passes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- docs/reqstream/ots/fileassert.yaml | 4 ++-- docs/verification/ots/fileassert.md | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/reqstream/ots/fileassert.yaml b/docs/reqstream/ots/fileassert.yaml index 0311e3b..74400f4 100644 --- a/docs/reqstream/ots/fileassert.yaml +++ b/docs/reqstream/ots/fileassert.yaml @@ -17,5 +17,5 @@ sections: tags: [ots] tests: - FileAssert_Results - - FileAssert_Exists - - FileAssert_Contains + - FileAssert_File + - FileAssert_Text diff --git a/docs/verification/ots/fileassert.md b/docs/verification/ots/fileassert.md index a9891ce..fdcb687 100644 --- a/docs/verification/ots/fileassert.md +++ b/docs/verification/ots/fileassert.md @@ -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`.