public void ItShouldMatchStringWhenNotEmpty() { var result = new RightJoinComponent("Table") .GetValue(); Assert.That(result == "RIGHT JOIN Table"); }
public void ItShouldMatchStringWhenEmpty() { var result = new RightJoinComponent("") .GetValue(); Assert.That(result.Trim() == "RIGHT JOIN"); }