mirror of
https://github.com/dorny/test-reporter.git
synced 2026-03-22 16:02:13 +01:00
Add nunit-legacy fixture generation code
This commit is contained in:
parent
41662db5ca
commit
96ad96d584
11 changed files with 379 additions and 0 deletions
9
reports/dotnet-nunit-legacy/MyLibrary/Calculator.cs
Normal file
9
reports/dotnet-nunit-legacy/MyLibrary/Calculator.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
namespace MyLibrary
|
||||
{
|
||||
public class Calculator
|
||||
{
|
||||
public int Sum(int a, int b) => a + b;
|
||||
|
||||
public int Div(int a, int b) => a / b;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue