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