1
0
Fork 0
mirror of https://github.com/dorny/test-reporter.git synced 2026-03-22 07:52:14 +01:00
test-reporter/reports/dotnet-nunit-legacy/MyLibrary/Calculator.cs
2025-03-05 09:46:34 -06:00

9 lines
163 B
C#

namespace MyLibrary
{
public class Calculator
{
public int Sum(int a, int b) => a + b;
public int Div(int a, int b) => a / b;
}
}