Exemplo n.º 1
0
            public void ItShouldMatchStringWhenNotEmpty()
            {
                var result = new InnerJoinComponent("Table")
                             .GetValue();

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

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