*/
@Test
public void testSettings() throws Exception {
StringReader sr = new StringReader("settings\nenforce-worker-parity until-saturation\nuse-extractor-trick\npush-pull-workers-gas\npush-pull-in-threes\navoid-unnecessary-extractor\nmax-extractor-trick-supply 10\nmin-pool-supply 11\nmin-extractor-supply 12\nmin-hatchery-supply 13\nwaypoint 3:00\nzergling\nspine-crawler\nmelee");
InputFile file = new InputFile(sr);
EcSettings settings = file.getDestination().settings;
Assert.assertFalse(settings.overDrone);
Assert.assertTrue(settings.workerParity);
Assert.assertTrue(settings.useExtractorTrick);
Assert.assertTrue(settings.pullWorkersFromGas);
Assert.assertTrue(settings.pullThreeWorkersOnly);