@Test
 public void testParseSourcePaths() throws Exception {
   final ApiGeneratorConfig config = ApiGeneratorConfigImpl.load(kv("beamSourceDir", "../beam"));
   String[] sourcePaths = config.getSourcePaths();
   assertArrayEquals(
       new String[] {"../beam/beam-core/src/main/java", "../beam/beam-gpf/src/main/java"},
       sourcePaths);
 }