mirror of
https://github.com/github/codeql.git
synced 2026-03-17 04:56:58 +01:00
29 lines
646 B
C#
29 lines
646 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()
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
// semmle-extractor-options: ${testdir}/../../../resources/stubs/Microsoft.VisualStudio.TestTools.UnitTesting.cs
|