CompilerConfiguration compiler = create();
int bid = compiler.bid("c:/foo\\bar\\hello.c");
assertEquals(100, bid);
bid = compiler.bid("c:/foo\\bar/hello.c");
assertEquals(100, bid);
bid = compiler.bid("c:/foo\\bar\\hello.h");
assertEquals(1, bid);
bid = compiler.bid("c:/foo\\bar/hello.h");
assertEquals(1, bid);
bid = compiler.bid("c:/foo\\bar/hello.pas");
assertEquals(0, bid);