refactoring messages
This commit is contained in:
parent
6066497a67
commit
13bdf7463d
44 changed files with 602 additions and 303 deletions
|
|
@ -10,5 +10,24 @@ namespace test1
|
|||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
[Fact]
|
||||
public void PassingTest()
|
||||
{
|
||||
Assert.Equal(4, Add(2, 2));
|
||||
}
|
||||
|
||||
[Fact]
|
||||
public void FailingTest()
|
||||
{
|
||||
Assert.Equal(5, Add(2, 2));
|
||||
}
|
||||
|
||||
int Add(int x, int y)
|
||||
{
|
||||
return x + y;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue