mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-03 19:55:22 -08:00
Add dotnet-trx fixture project
This commit is contained in:
11
reports/dotnet/DotnetTests.Unit/Calculator.cs
Normal file
11
reports/dotnet/DotnetTests.Unit/Calculator.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
using System;
|
||||
|
||||
namespace DotnetTests.Unit
|
||||
{
|
||||
public class Calculator
|
||||
{
|
||||
public int Sum(int a, int b) => a + b;
|
||||
|
||||
public int Div(int a, int b) => a / b;
|
||||
}
|
||||
}
|
||||
7
reports/dotnet/DotnetTests.Unit/DotnetTests.Unit.csproj
Normal file
7
reports/dotnet/DotnetTests.Unit/DotnetTests.Unit.csproj
Normal file
@@ -0,0 +1,7 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>netstandard2.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Reference in New Issue
Block a user