// XXX this is an unsafe test to do on a non-windows box
public void disabledtestUserProperiesErrorWin() {
final String error =
"C:/Users/fedor.korotkov/workspace/haxe-bubble-breaker/src/Main.hx:5: characters 0-21 : Class not found : StringTools212";
final String rootPath = "C:/Users/fedor.korotkov/workspace/haxe-bubble-breaker";
final HaxeCompilerError compilerError = HaxeCompilerError.create(rootPath, error, false);
assertNotNull(compilerError);
assertEquals(CompilerMessageCategory.ERROR, compilerError.getCategory());
assertEquals("C:/Users/fedor.korotkov/workspace/haxe-bubble-breaker/src/Main.hx", compilerError.getPath());
assertEquals("Class not found : StringTools212", compilerError.getErrorMessage());
assertEquals(5, compilerError.getLine());
assertEquals(0, compilerError.getColumn());
}