1
0
Fork 0
mirror of https://github.com/dorny/test-reporter.git synced 2026-02-04 05:27:55 +01:00
test-reporter/reports/dotnet/DotnetTests.Unit/Calculator.cs
2020-10-17 21:41:49 +02:00

11 lines
181 B
C#

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;
}
}