* @throws IOException test fails on IOException
*/
public void testImmediateImportBracket() throws IOException {
CharArrayReader reader = new CharArrayReader(
"#import <foo.h> nowhatever ".toCharArray());
CParser parser = new CParser();
parser.parse(reader);
String[] includes = parser.getIncludes();
assertEquals(includes.length, 1);
assertEquals("foo.h", includes[0]);
}