}
@Test
public void shouldHandleBackSlashInVariable() throws IOException {
String findVariable = "sql";
Properties properties = new PlainProperties(findVariable + "='\\\\'");
assertEquals("'\\'", properties.getProperty(findVariable));
VariableEvaluaterImpl evaluater = new VariableEvaluaterImpl(properties);
assertEquals("Variables were not replaced correctly", "find this variable: '\\'",
evaluater.replaceAllVariables("find this variable: ${" + findVariable + "}"));
}