Testhide.Reporting.Core
0.1.3
See the version list below for details.
dotnet add package Testhide.Reporting.Core --version 0.1.3
NuGet\Install-Package Testhide.Reporting.Core -Version 0.1.3
<PackageReference Include="Testhide.Reporting.Core" Version="0.1.3" />
<PackageVersion Include="Testhide.Reporting.Core" Version="0.1.3" />
<PackageReference Include="Testhide.Reporting.Core" />
paket add Testhide.Reporting.Core --version 0.1.3
#r "nuget: Testhide.Reporting.Core, 0.1.3"
#:package Testhide.Reporting.Core@0.1.3
#addin nuget:?package=Testhide.Reporting.Core&version=0.1.3
#tool nuget:?package=Testhide.Reporting.Core&version=0.1.3
testhide-dotnet
Emit Testhide-format (JUnit-extended) test reports from .NET, so the Testhide build agent parses your results correctly and the dashboard/AI features get full data.
It ships as a VSTest logger — one component that works for xUnit, NUnit and MSTest, because
they all run through dotnet test. Output is identical to the
testhide-pytest-plugin contract
(fail_id, test_resolution, <system-out>, suite metadata, testhide_schema_version=1).
Canonical spec:
Testhide Report Format v1.
Packages
| Package | Purpose |
|---|---|
Testhide.Reporting.VSTest |
the dotnet test logger (FriendlyName testhide) — this is all you need |
Testhide.Reporting.Core |
shared report writer (pulled in automatically) |
Testhide.Reporting.Xunit |
convenience meta-package (depends on VSTest) for discoverability |
Testhide.Reporting.NUnit |
convenience meta-package (depends on VSTest) |
Testhide.Reporting.MSTest |
convenience meta-package (depends on VSTest) |
The single VSTest logger covers xUnit / NUnit / MSTest — it's the only one you technically need. The per-framework packages are thin meta-packages (no code; they just depend on
Testhide.Reporting.VSTest) provided purely for discoverability, e.g.dotnet add package Testhide.Reporting.Xunit.
Install & use
dotnet add package Testhide.Reporting.VSTest
dotnet test --logger "testhide;LogFilePath=junittests.xml"
Logger parameters (name=value, ;-separated):
| Parameter | Meaning |
|---|---|
LogFilePath |
output report path (default junittests.xml; relative paths resolve under TestResults/) |
SuiteName |
<testsuite name="..."> (default dotnet) |
meta.KEY=VALUE |
add a suite <property> (e.g. meta.build=1042;meta.branch=main) |
JiraUrl / JiraUsername / JiraPassword |
optional Jira enrichment by fail_id |
Example with metadata:
dotnet test --logger "testhide;LogFilePath=junittests.xml;SuiteName=api-tests;meta.build=1042;meta.branch=main"
What it captures
- Outcomes: passed / failed / skipped (from VSTest
TestOutcome). fail_id=md5("module.class.method.ExceptionType(message)")— stable failure key (dedup + Jira).- Failure message + stack trace (CDATA), duration,
test_resolution, suite counts + metadata. - Source
file/linewhen the test framework provides them (e.g. with portable PDBs / SourceLink). - Per-test metadata via test traits named
docstr/jira/info(framework-dependent), and result attachments →attachmentproperties.
Verify (conformance)
conformance/ vendors the canonical validator + golden fixture. CI runs the sample suite through
the logger and validates the output:
python conformance/validate_report.py junittests.xml
Build locally
pwsh scripts/build.ps1 # or: bash scripts/build.sh
Builds, runs the xUnit sample under the logger, validates the report, and packs both NuGet packages
into artifacts/.
Publishing (maintainers)
Local publish (Windows):
copy .env.local.example .env.local :: then edit .env.local and add NUGET_API_KEY
publish.bat
publish.bat loads .env.local (gitignored), runs the conformance gate (sample run through the
logger + validator), packs all src/ packages, and pushes them to NuGet.
.env.local:
NUGET_API_KEY=... # https://www.nuget.org/account/apikeys (scope: Testhide.Reporting.*)
CI publish (GitHub Actions): run the Publish to NuGet workflow (manual workflow_dispatch,
pass the version). Required repository secret:
NUGET_API_KEY.
License
MIT.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Testhide.Reporting.Core:
| Package | Downloads |
|---|---|
|
Testhide.Reporting.VSTest
VSTest logger that emits Testhide Report Format v1 from `dotnet test` — works for xUnit, NUnit and MSTest. Enable with: dotnet test --logger "testhide;LogFilePath=junittests.xml". |
GitHub repositories
This package is not used by any popular GitHub repositories.