Example #1
0
            public void ItShouldMatchStringWhenNotEmpty()
            {
                var result = new InnerJoinComponent("Table")
                             .GetValue();

                Assert.That(result == "INNER JOIN Table");
            }
Example #2
0
            public void ItShouldMatchStringWhenEmpty()
            {
                var result = new InnerJoinComponent("")
                             .GetValue();

                Assert.That(result.Trim() == "INNER JOIN");
            }