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