public void testVariablesNotAvailable() throws Exception {
boolean foundMessage = false;
try {
// create annotation tester with the regex annotator specifier
new AnnotatorTester(JUnitExtension
.getFile("variables/RegExAnnotVariablesError.xml"));
} catch (ResourceInitializationException ex) {
String message = ex.getCause().getMessage();
if ((message.indexOf("days") > -1)
&& (message.indexOf("VariableError") > -1)) {