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;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"sdk": {
|
||||
"version": "2.0.4",
|
||||
"runtime": "mono",
|
||||
"architecture": "x64"
|
||||
}
|
||||
}
|
||||
"sdk": {
|
||||
"version": "2.0.4",
|
||||
"runtime": "mono",
|
||||
"architecture": "x64"
|
||||
}
|
||||
}
|
||||
7
test/packages.config
Normal file
7
test/packages.config
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Microsoft.NET.Test.Sdk" version="15.5.0" targetFramework="net45" />
|
||||
<package id="xunit" version="2.3.1" targetFramework="net45" />
|
||||
<package id="xunit.runner.visualstudio" version="2.3.1" targetFramework="net45" />
|
||||
<package id="xunit.runner.console" version="2.3.1" targetFramework="net45" />
|
||||
</packages>
|
||||
Loading…
Add table
Add a link
Reference in a new issue