mirror of
https://github.com/github/codeql.git
synced 2026-03-17 04:56:58 +01:00
27 lines
532 B
C#
27 lines
532 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace VisualStudioTests
|
|
{
|
|
class TestMethodAttribute : Attribute { } // fake
|
|
|
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestClass]
|
|
class MyTestSuite
|
|
{
|
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestMethod]
|
|
public void Test1()
|
|
{
|
|
}
|
|
|
|
[Microsoft.VisualStudio.TestTools.UnitTesting.TestMethod]
|
|
public void Test2()
|
|
{
|
|
}
|
|
|
|
[TestMethod]
|
|
public void NonTest()
|
|
{
|
|
}
|
|
}
|
|
}
|