19 lines
No EOL
324 B
C#
19 lines
No EOL
324 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
|
|
namespace TestNamespace
|
|
{
|
|
[TestClass]
|
|
public class VSTestTests
|
|
{
|
|
[TestMethod]
|
|
public void VSTestPassTest()
|
|
{
|
|
}
|
|
|
|
[TestMethod]
|
|
public void VSTestFailTest()
|
|
{
|
|
Assert.Fail();
|
|
}
|
|
}
|
|
} |