mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 13:57:09 +01:00
11 lines
181 B
C#
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;
|
|
}
|
|
}
|