Created
November 30, 2022 10:41
-
-
Save alemik/4da036c08d154cf3bf4d050330c202f5 to your computer and use it in GitHub Desktop.
Base Test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [TestClass] | |
| public class TestClass1 | |
| { | |
| [TestMethod] | |
| public void TestClause() | |
| { | |
| //Arrange | |
| string sql = @"SELECT src.id FROM Walls src"; | |
| // Act | |
| var actual = Parse(sql);; | |
| var expected = sql; | |
| //Asserts | |
| Assert.AreEqual(expected, actual); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment