├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── release-v2.yml │ └── release-v3.yml ├── .gitignore ├── README.md ├── dotnet-xunit-otel.sln ├── src ├── PracticalOtel.xUnit.OpenTelemetry │ ├── PracticalOtel.xUnit.OpenTelemetry.csproj │ ├── TestRunIdProcessor.cs │ ├── TracedTestFramework.cs │ └── TracedTestMethodRunner.cs └── PracticalOtel.xUnit.v3.OpenTelemetry │ ├── PracticalOtel.xUnit.v3.OpenTelemetry.csproj │ ├── TestRunResourceAttributes.cs │ └── TracedPipelineStartup.cs └── tests ├── PracticalOtel.xUnit.OpenTelemetry.Tests ├── OtelTestFramework.cs ├── PracticalOtel.xUnit.OpenTelemetry.Tests.csproj └── UnitTest1.cs └── PracticalOtel.xUnit.v3.OpenTelemetry.Tests ├── OtelTestFramework.cs ├── PracticalOtel.xUnit.v3.OpenTelemetry.Tests.csproj └── UnitTest1.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/release-v2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/.github/workflows/release-v2.yml -------------------------------------------------------------------------------- /.github/workflows/release-v3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/.github/workflows/release-v3.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/README.md -------------------------------------------------------------------------------- /dotnet-xunit-otel.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/dotnet-xunit-otel.sln -------------------------------------------------------------------------------- /src/PracticalOtel.xUnit.OpenTelemetry/PracticalOtel.xUnit.OpenTelemetry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/src/PracticalOtel.xUnit.OpenTelemetry/PracticalOtel.xUnit.OpenTelemetry.csproj -------------------------------------------------------------------------------- /src/PracticalOtel.xUnit.OpenTelemetry/TestRunIdProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/src/PracticalOtel.xUnit.OpenTelemetry/TestRunIdProcessor.cs -------------------------------------------------------------------------------- /src/PracticalOtel.xUnit.OpenTelemetry/TracedTestFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/src/PracticalOtel.xUnit.OpenTelemetry/TracedTestFramework.cs -------------------------------------------------------------------------------- /src/PracticalOtel.xUnit.OpenTelemetry/TracedTestMethodRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/src/PracticalOtel.xUnit.OpenTelemetry/TracedTestMethodRunner.cs -------------------------------------------------------------------------------- /src/PracticalOtel.xUnit.v3.OpenTelemetry/PracticalOtel.xUnit.v3.OpenTelemetry.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/src/PracticalOtel.xUnit.v3.OpenTelemetry/PracticalOtel.xUnit.v3.OpenTelemetry.csproj -------------------------------------------------------------------------------- /src/PracticalOtel.xUnit.v3.OpenTelemetry/TestRunResourceAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/src/PracticalOtel.xUnit.v3.OpenTelemetry/TestRunResourceAttributes.cs -------------------------------------------------------------------------------- /src/PracticalOtel.xUnit.v3.OpenTelemetry/TracedPipelineStartup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/src/PracticalOtel.xUnit.v3.OpenTelemetry/TracedPipelineStartup.cs -------------------------------------------------------------------------------- /tests/PracticalOtel.xUnit.OpenTelemetry.Tests/OtelTestFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/tests/PracticalOtel.xUnit.OpenTelemetry.Tests/OtelTestFramework.cs -------------------------------------------------------------------------------- /tests/PracticalOtel.xUnit.OpenTelemetry.Tests/PracticalOtel.xUnit.OpenTelemetry.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/tests/PracticalOtel.xUnit.OpenTelemetry.Tests/PracticalOtel.xUnit.OpenTelemetry.Tests.csproj -------------------------------------------------------------------------------- /tests/PracticalOtel.xUnit.OpenTelemetry.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/tests/PracticalOtel.xUnit.OpenTelemetry.Tests/UnitTest1.cs -------------------------------------------------------------------------------- /tests/PracticalOtel.xUnit.v3.OpenTelemetry.Tests/OtelTestFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/tests/PracticalOtel.xUnit.v3.OpenTelemetry.Tests/OtelTestFramework.cs -------------------------------------------------------------------------------- /tests/PracticalOtel.xUnit.v3.OpenTelemetry.Tests/PracticalOtel.xUnit.v3.OpenTelemetry.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/tests/PracticalOtel.xUnit.v3.OpenTelemetry.Tests/PracticalOtel.xUnit.v3.OpenTelemetry.Tests.csproj -------------------------------------------------------------------------------- /tests/PracticalOtel.xUnit.v3.OpenTelemetry.Tests/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/practical-otel/dotnet-xunit-otel/HEAD/tests/PracticalOtel.xUnit.v3.OpenTelemetry.Tests/UnitTest1.cs --------------------------------------------------------------------------------