blob: ff5262642ee6fad80f229e0fb9fdf399a34a5037 [file] [log] [blame]
/*
$Id$
Copyright (c) 2004 Jeremy Rayner. All Rights Reserved.
Jeremy Rayner makes no representations or warranties about
the fitness of this software for any particular purpose,
including the implied warranty of merchantability.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package com.javanicus.bpwj;
import junit.framework.*;
import sjm.parse.*;
import sjm.parse.tokens.*;
import sjm.examples.track.TrackException;
import java.io.FileOutputStream;
import java.io.PrintStream;
import java.io.IOException;
public class JavaParserTest extends TestCase {
private ParserFacade parser;
public void setUp() {
parser = new ParserFacade(new LoggingJavaParser().start());
}
public void testSimpleJavaProgram() {
// -- debug
try {
LoggingJavaParser.out = new PrintStream(new FileOutputStream("testSimpleJavaProgram.mm"));
} catch (IOException e) {
e.printStackTrace();
}
LoggingJavaParser.out.println("<map version='0.7.1'>");
try{
assertFalse(parser.parse("package foo.bar; public class Foo extends Bar{}").hasMoreElements());
} catch (Exception e) {
LoggingJavaParser.out.println("</node>");
}
LoggingJavaParser.out.println("</node>");
LoggingJavaParser.out.println("</map>");
}
}