using Microsoft.VisualStudio.TestTools.UnitTesting;
using TestHelpers;
namespace TSQLSmellsSSDTTest;
[TestClass]
public class TestTempTableWithNamedPK : TestModel
{
public TestTempTableWithNamedPK()
{
TestFiles.Add("../../../../../sqlprojects/TSQLSmellsTest/TempTableWithNamedPK.sql");
ExpectedProblems.Add(new TestProblem(14, 3, "Smells.SML038"));
// this._ExpectedProblems.Add(new TestProblem(7, 8, "Smells.SML005"));
// this._ExpectedProblems.Add(new TestProblem(9, 8, "Smells.SML005"));
}
[TestMethod]
public void TempTableWithNamedPK()
{
RunTest();
}
}