public void AppendStringLiteral()
 {
     _sqlCommandBuilder.AppendStringLiteral("'test'");
     Assert.That(_sqlCommandBuilder.GetCommandText(), Is.EqualTo("'''test'''"));
 }