parent
df15518a52
commit
c4d7c3c21a
9 changed files with 265 additions and 50 deletions
21
SampleTestProject/UnitTests.cs
Normal file
21
SampleTestProject/UnitTests.cs
Normal file
|
@ -0,0 +1,21 @@
|
|||
using System;
|
||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||
|
||||
namespace SampleTestProject
|
||||
{
|
||||
[TestClass]
|
||||
public class UnitTests
|
||||
{
|
||||
[TestMethod]
|
||||
public void TestMethodSuccess()
|
||||
{
|
||||
Assert.IsTrue(true);
|
||||
}
|
||||
|
||||
[TestMethod]
|
||||
public void TestMethodFailure()
|
||||
{
|
||||
Assert.IsTrue(false);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue