コード例 #1
0
            public void ItShouldMatchStringWhenNotEmpty()
            {
                var result = new RightJoinComponent("Table")
                             .GetValue();

                Assert.That(result == "RIGHT JOIN Table");
            }
コード例 #2
0
            public void ItShouldMatchStringWhenEmpty()
            {
                var result = new RightJoinComponent("")
                             .GetValue();

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