14 lines
216 B
C#
14 lines
216 B
C#
namespace TestProject
|
|
{
|
|
[TestClass]
|
|
public sealed class Test1
|
|
{
|
|
[TestMethod]
|
|
public void TestMethod1()
|
|
{
|
|
Assert.Fail("intentionally failing...");
|
|
}
|
|
|
|
}
|
|
}
|