// this is for optically verifying the result in the console.
// it will never really fail.
public void testPreprocessorTemp() {
String result="";
int c=0;
Preprocessor p;
try{
p=new Preprocessor(new File("javasrc/de/maramuse/soundcomp/test/testfiles/tempotest"));
p.appendPath("javasrc/de/maramuse/soundcomp/test/testfiles/");
}catch(FileNotFoundException e1){
fail("file testsource not found");
return;
}
while(c>-1&&c<65535){
try{
c=p.read();
if(c==1)
result+='\r';
else if(c>-1&&c<65535)
result+=(char)c;
}catch(IOException e){