├── .gitattributes ├── .gitignore ├── .vscode ├── extensions.json ├── launch.json └── tasks.json ├── BuildCliComponents.sh ├── BuildForPublication.cmd ├── CiBuild.cmd ├── DotNetCliVersion.txt ├── LICENSE ├── NuGet.config ├── README.md ├── dotnet-install.cmd ├── netci.groovy ├── samples ├── ClassLibrary.net46 │ ├── ClassLibrary.net46.csproj │ ├── SampleTests.cs │ ├── app.config │ └── packages.config └── SimplePerfTests │ ├── Calibration.cs │ ├── DictionaryThroughput.cs │ ├── FormattingTests.cs │ ├── SimplePerfTests.csproj │ └── StringThroughput.cs ├── src ├── common.props ├── common │ └── xunit.performance.snk ├── version.props ├── xunit.performance.api │ ├── CSVMetricReader.cs │ ├── ConsoleDiagnosticMessageSink.cs │ ├── DictionaryExtensions.cs │ ├── EtwPerformanceMetricEvaluationContext.cs │ ├── FunctionalExtensions.cs │ ├── IInterval.cs │ ├── Kernel32.cs │ ├── MarkdownHelper.cs │ ├── MetricCollectionFactory │ │ ├── CompositePerformanceMetricFactory.cs │ │ ├── DefaultPerformanceMetricFactory.cs │ │ ├── GCAPIPerformanceMetricFactory.cs │ │ ├── IPerformanceMetricFactory.cs │ │ ├── PmcPerformanceMetricFactory.cs │ │ └── StopwatchPerformanceMetricFactory.cs │ ├── Model │ │ ├── AssemblyModel.cs │ │ └── TableHeader.cs │ ├── PerformanceMetric │ │ ├── GCAllocatedBytesForCurrentThreadEvaluator.cs │ │ ├── GCAllocatedBytesForCurrentThreadMetric.cs │ │ └── GCAllocatedBytesForCurrentThreadMetricDiscoverer.cs │ ├── PerformanceMetricInfoComparer.cs │ ├── PerformanceMonitorCounter │ │ ├── BasePerformanceMonitorCounter.cs │ │ ├── BranchMispredictionsPerformanceMonitorCounter.cs │ │ ├── CacheMissesPerformanceMonitorCounter.cs │ │ ├── GenericPerformanceMonitorCounterDiscoverer.cs │ │ ├── GenericPerformanceMonitorCounterEvaluator.cs │ │ ├── GenericPerformanceMonitorCounterMetric.cs │ │ ├── IPerformanceMonitorCounter.cs │ │ └── InstructionRetiredPerformanceMonitorCounter.cs │ ├── PerformanceTestMessage.cs │ ├── PerformanceTestMessageSink.cs │ ├── ProcessExitInfo.cs │ ├── Profilers │ │ ├── ETWOutputData.cs │ │ ├── ETWProfiler.cs │ │ ├── Etw │ │ │ ├── AddressSpace.cs │ │ │ ├── DotNetMethod.cs │ │ │ ├── DotNetModule.cs │ │ │ ├── Helper.cs │ │ │ ├── KernelProvider.cs │ │ │ ├── LifeSpan.cs │ │ │ ├── Listener.cs │ │ │ ├── Module.cs │ │ │ ├── PerformanceMonitorCounter.cs │ │ │ ├── PmcSample.cs │ │ │ ├── Process.cs │ │ │ ├── RuntimeInstance.cs │ │ │ ├── Session.cs │ │ │ ├── SessionData.cs │ │ │ ├── SimpleTraceEventParser.cs │ │ │ └── UserProvider.cs │ │ └── ICanListenEvents.cs │ ├── SafeTerminateHandler.cs │ ├── ScenarioExecutionResult.cs │ ├── ScenarioTest.cs │ ├── ScenarioTestConfiguration.cs │ ├── Table │ │ ├── CSVFile.cs │ │ ├── ColumnName.cs │ │ ├── ColumnNameCollection.cs │ │ ├── DataTable.cs │ │ └── Row.cs │ ├── XUnitPerformanceMetricData.cs │ ├── XUnitPerformanceSessionData.cs │ ├── XunitBenchmark.cs │ ├── XunitPerformanceHarness.cs │ ├── XunitPerformanceHarnessOptions.cs │ ├── XunitRunner.cs │ └── xunit.performance.api.csproj ├── xunit.performance.core │ ├── Benchmark.cs │ ├── BenchmarkAttribute.cs │ ├── BenchmarkIteration.cs │ ├── BenchmarkIterationMeasurement.cs │ ├── BenchmarkIterator.cs │ ├── Common.cs │ ├── ConsoleOutput │ │ └── PerformanceLogger.cs │ ├── IPerformanceMetricAttribute.cs │ ├── IPerformanceMetricDiscoverer.cs │ ├── MeasureGCAllocationsAttribute.cs │ ├── MeasureGCCountsAttribute.cs │ ├── MeasureInstructionsRetired.cs │ ├── OptimizeForBenchmarksAttribute.cs │ ├── PerformanceMetricDiscovererAttribute.cs │ ├── PerformanceMetricInfo.cs │ ├── PerformanceMetricUnits.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── xunit.performance.core.csproj ├── xunit.performance.execution │ ├── AllocatedBytesForCurrentThread.cs │ ├── BenchmarkConfiguration.cs │ ├── BenchmarkDiscoverer.cs │ ├── BenchmarkEventSource.cs │ ├── BenchmarkTestCase.cs │ ├── BenchmarkTestCaseRunner.cs │ ├── BenchmarkTestFramework.cs │ ├── BenchmarkTestFrameworkExecutor.cs │ ├── BenchmarkTestFrameworkTypeDiscoverer.cs │ ├── BenchmarkTestInvoker.cs │ ├── BenchmarkTestRunner.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── xunit.performance.execution.csproj └── xunit.performance.metrics │ ├── BenchmarkDurationEvaluator.cs │ ├── BenchmarkDurationMetric.cs │ ├── BenchmarkMetricDiscoverer.cs │ ├── CPUCounterInfo.cs │ ├── GCAllocationsEvaluator.cs │ ├── GCAllocationsMetric.cs │ ├── GCAllocationsMetricDiscoverer.cs │ ├── GCCountEvaluator.cs │ ├── GCCountMetric.cs │ ├── GCCountMetricDiscoverer.cs │ ├── IPerformanceMetricReader.cs │ ├── InstructionsRetiredEvaluator.cs │ ├── InstructionsRetiredMetric.cs │ ├── InstructionsRetiredMetricDiscoverer.cs │ ├── KernelProviderInfo.cs │ ├── Microsoft-Xunit-Benchmark.manifest.cs │ ├── PerformanceMetric.cs │ ├── PerformanceMetricEvaluationContext.cs │ ├── PerformanceMetricEvaluator.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── ProviderInfo.cs │ ├── UserProviderInfo.cs │ └── xunit.performance.metrics.csproj ├── tests ├── scenariobenchmark │ ├── Program.cs │ └── scenariobenchmark.csproj ├── simpleharness │ ├── EmptyBenchmarkTest.cs │ ├── EndToEndTests.cs │ ├── GetAllocatedBytesForCurrentThreadTest.cs │ ├── Program.cs │ └── simpleharness.csproj └── standalonesample │ ├── Program.cs │ └── standalonesample.csproj └── xunit-performance.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BuildCliComponents.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/BuildCliComponents.sh -------------------------------------------------------------------------------- /BuildForPublication.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/BuildForPublication.cmd -------------------------------------------------------------------------------- /CiBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/CiBuild.cmd -------------------------------------------------------------------------------- /DotNetCliVersion.txt: -------------------------------------------------------------------------------- 1 | 2.1.302 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/LICENSE -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/README.md -------------------------------------------------------------------------------- /dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/dotnet-install.cmd -------------------------------------------------------------------------------- /netci.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/netci.groovy -------------------------------------------------------------------------------- /samples/ClassLibrary.net46/ClassLibrary.net46.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/samples/ClassLibrary.net46/ClassLibrary.net46.csproj -------------------------------------------------------------------------------- /samples/ClassLibrary.net46/SampleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/samples/ClassLibrary.net46/SampleTests.cs -------------------------------------------------------------------------------- /samples/ClassLibrary.net46/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/samples/ClassLibrary.net46/app.config -------------------------------------------------------------------------------- /samples/ClassLibrary.net46/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/samples/ClassLibrary.net46/packages.config -------------------------------------------------------------------------------- /samples/SimplePerfTests/Calibration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/samples/SimplePerfTests/Calibration.cs -------------------------------------------------------------------------------- /samples/SimplePerfTests/DictionaryThroughput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/samples/SimplePerfTests/DictionaryThroughput.cs -------------------------------------------------------------------------------- /samples/SimplePerfTests/FormattingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/samples/SimplePerfTests/FormattingTests.cs -------------------------------------------------------------------------------- /samples/SimplePerfTests/SimplePerfTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/samples/SimplePerfTests/SimplePerfTests.csproj -------------------------------------------------------------------------------- /samples/SimplePerfTests/StringThroughput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/samples/SimplePerfTests/StringThroughput.cs -------------------------------------------------------------------------------- /src/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/common.props -------------------------------------------------------------------------------- /src/common/xunit.performance.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/common/xunit.performance.snk -------------------------------------------------------------------------------- /src/version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/version.props -------------------------------------------------------------------------------- /src/xunit.performance.api/CSVMetricReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/CSVMetricReader.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/ConsoleDiagnosticMessageSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/ConsoleDiagnosticMessageSink.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/EtwPerformanceMetricEvaluationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/EtwPerformanceMetricEvaluationContext.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/FunctionalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/FunctionalExtensions.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/IInterval.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/IInterval.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Kernel32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Kernel32.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/MarkdownHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/MarkdownHelper.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/MetricCollectionFactory/CompositePerformanceMetricFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/MetricCollectionFactory/CompositePerformanceMetricFactory.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/MetricCollectionFactory/DefaultPerformanceMetricFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/MetricCollectionFactory/DefaultPerformanceMetricFactory.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/MetricCollectionFactory/GCAPIPerformanceMetricFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/MetricCollectionFactory/GCAPIPerformanceMetricFactory.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/MetricCollectionFactory/IPerformanceMetricFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/MetricCollectionFactory/IPerformanceMetricFactory.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/MetricCollectionFactory/PmcPerformanceMetricFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/MetricCollectionFactory/PmcPerformanceMetricFactory.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/MetricCollectionFactory/StopwatchPerformanceMetricFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/MetricCollectionFactory/StopwatchPerformanceMetricFactory.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Model/AssemblyModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Model/AssemblyModel.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Model/TableHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Model/TableHeader.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMetric/GCAllocatedBytesForCurrentThreadEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMetric/GCAllocatedBytesForCurrentThreadEvaluator.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMetric/GCAllocatedBytesForCurrentThreadMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMetric/GCAllocatedBytesForCurrentThreadMetric.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMetric/GCAllocatedBytesForCurrentThreadMetricDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMetric/GCAllocatedBytesForCurrentThreadMetricDiscoverer.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMetricInfoComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMetricInfoComparer.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMonitorCounter/BasePerformanceMonitorCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMonitorCounter/BasePerformanceMonitorCounter.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMonitorCounter/BranchMispredictionsPerformanceMonitorCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMonitorCounter/BranchMispredictionsPerformanceMonitorCounter.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMonitorCounter/CacheMissesPerformanceMonitorCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMonitorCounter/CacheMissesPerformanceMonitorCounter.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMonitorCounter/GenericPerformanceMonitorCounterDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMonitorCounter/GenericPerformanceMonitorCounterDiscoverer.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMonitorCounter/GenericPerformanceMonitorCounterEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMonitorCounter/GenericPerformanceMonitorCounterEvaluator.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMonitorCounter/GenericPerformanceMonitorCounterMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMonitorCounter/GenericPerformanceMonitorCounterMetric.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMonitorCounter/IPerformanceMonitorCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMonitorCounter/IPerformanceMonitorCounter.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceMonitorCounter/InstructionRetiredPerformanceMonitorCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceMonitorCounter/InstructionRetiredPerformanceMonitorCounter.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceTestMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceTestMessage.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/PerformanceTestMessageSink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/PerformanceTestMessageSink.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/ProcessExitInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/ProcessExitInfo.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/ETWOutputData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/ETWOutputData.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/ETWProfiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/ETWProfiler.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/AddressSpace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/AddressSpace.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/DotNetMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/DotNetMethod.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/DotNetModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/DotNetModule.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/Helper.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/KernelProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/KernelProvider.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/LifeSpan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/LifeSpan.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/Listener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/Listener.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/Module.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/PerformanceMonitorCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/PerformanceMonitorCounter.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/PmcSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/PmcSample.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/Process.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/RuntimeInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/RuntimeInstance.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/Session.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/SessionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/SessionData.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/SimpleTraceEventParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/SimpleTraceEventParser.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/Etw/UserProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/Etw/UserProvider.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Profilers/ICanListenEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Profilers/ICanListenEvents.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/SafeTerminateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/SafeTerminateHandler.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/ScenarioExecutionResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/ScenarioExecutionResult.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/ScenarioTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/ScenarioTest.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/ScenarioTestConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/ScenarioTestConfiguration.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Table/CSVFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Table/CSVFile.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Table/ColumnName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Table/ColumnName.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Table/ColumnNameCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Table/ColumnNameCollection.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Table/DataTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Table/DataTable.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/Table/Row.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/Table/Row.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/XUnitPerformanceMetricData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/XUnitPerformanceMetricData.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/XUnitPerformanceSessionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/XUnitPerformanceSessionData.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/XunitBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/XunitBenchmark.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/XunitPerformanceHarness.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/XunitPerformanceHarness.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/XunitPerformanceHarnessOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/XunitPerformanceHarnessOptions.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/XunitRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/XunitRunner.cs -------------------------------------------------------------------------------- /src/xunit.performance.api/xunit.performance.api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.api/xunit.performance.api.csproj -------------------------------------------------------------------------------- /src/xunit.performance.core/Benchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/Benchmark.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/BenchmarkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/BenchmarkAttribute.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/BenchmarkIteration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/BenchmarkIteration.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/BenchmarkIterationMeasurement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/BenchmarkIterationMeasurement.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/BenchmarkIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/BenchmarkIterator.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/Common.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/Common.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/ConsoleOutput/PerformanceLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/ConsoleOutput/PerformanceLogger.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/IPerformanceMetricAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/IPerformanceMetricAttribute.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/IPerformanceMetricDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/IPerformanceMetricDiscoverer.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/MeasureGCAllocationsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/MeasureGCAllocationsAttribute.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/MeasureGCCountsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/MeasureGCCountsAttribute.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/MeasureInstructionsRetired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/MeasureInstructionsRetired.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/OptimizeForBenchmarksAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/OptimizeForBenchmarksAttribute.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/PerformanceMetricDiscovererAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/PerformanceMetricDiscovererAttribute.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/PerformanceMetricInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/PerformanceMetricInfo.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/PerformanceMetricUnits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/PerformanceMetricUnits.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/xunit.performance.core/xunit.performance.core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.core/xunit.performance.core.csproj -------------------------------------------------------------------------------- /src/xunit.performance.execution/AllocatedBytesForCurrentThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/AllocatedBytesForCurrentThread.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkConfiguration.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkDiscoverer.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkEventSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkEventSource.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkTestCase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkTestCase.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkTestCaseRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkTestCaseRunner.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkTestFramework.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkTestFramework.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkTestFrameworkExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkTestFrameworkExecutor.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkTestFrameworkTypeDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkTestFrameworkTypeDiscoverer.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkTestInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkTestInvoker.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/BenchmarkTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/BenchmarkTestRunner.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/xunit.performance.execution/xunit.performance.execution.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.execution/xunit.performance.execution.csproj -------------------------------------------------------------------------------- /src/xunit.performance.metrics/BenchmarkDurationEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/BenchmarkDurationEvaluator.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/BenchmarkDurationMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/BenchmarkDurationMetric.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/BenchmarkMetricDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/BenchmarkMetricDiscoverer.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/CPUCounterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/CPUCounterInfo.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/GCAllocationsEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/GCAllocationsEvaluator.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/GCAllocationsMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/GCAllocationsMetric.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/GCAllocationsMetricDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/GCAllocationsMetricDiscoverer.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/GCCountEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/GCCountEvaluator.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/GCCountMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/GCCountMetric.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/GCCountMetricDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/GCCountMetricDiscoverer.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/IPerformanceMetricReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/IPerformanceMetricReader.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/InstructionsRetiredEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/InstructionsRetiredEvaluator.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/InstructionsRetiredMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/InstructionsRetiredMetric.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/InstructionsRetiredMetricDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/InstructionsRetiredMetricDiscoverer.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/KernelProviderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/KernelProviderInfo.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/Microsoft-Xunit-Benchmark.manifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/Microsoft-Xunit-Benchmark.manifest.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/PerformanceMetric.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/PerformanceMetric.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/PerformanceMetricEvaluationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/PerformanceMetricEvaluationContext.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/PerformanceMetricEvaluator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/PerformanceMetricEvaluator.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/ProviderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/ProviderInfo.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/UserProviderInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/UserProviderInfo.cs -------------------------------------------------------------------------------- /src/xunit.performance.metrics/xunit.performance.metrics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/src/xunit.performance.metrics/xunit.performance.metrics.csproj -------------------------------------------------------------------------------- /tests/scenariobenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/tests/scenariobenchmark/Program.cs -------------------------------------------------------------------------------- /tests/scenariobenchmark/scenariobenchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/tests/scenariobenchmark/scenariobenchmark.csproj -------------------------------------------------------------------------------- /tests/simpleharness/EmptyBenchmarkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/tests/simpleharness/EmptyBenchmarkTest.cs -------------------------------------------------------------------------------- /tests/simpleharness/EndToEndTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/tests/simpleharness/EndToEndTests.cs -------------------------------------------------------------------------------- /tests/simpleharness/GetAllocatedBytesForCurrentThreadTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/tests/simpleharness/GetAllocatedBytesForCurrentThreadTest.cs -------------------------------------------------------------------------------- /tests/simpleharness/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/tests/simpleharness/Program.cs -------------------------------------------------------------------------------- /tests/simpleharness/simpleharness.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/tests/simpleharness/simpleharness.csproj -------------------------------------------------------------------------------- /tests/standalonesample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/tests/standalonesample/Program.cs -------------------------------------------------------------------------------- /tests/standalonesample/standalonesample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/tests/standalonesample/standalonesample.csproj -------------------------------------------------------------------------------- /xunit-performance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xunit-performance/HEAD/xunit-performance.sln --------------------------------------------------------------------------------