aboutsummaryrefslogtreecommitdiffstats
path: root/Tests/MODELS2020-CaseStudies/case.study.pledge.run/src/run/ConfigGenerator.java
blob: 044d2651dceae5014ed0bf003b6e002708ebaca0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package run;

import hu.bme.mit.inf.dslreasoner.application.execution.StandaloneScriptExecutor;

public class ConfigGenerator {
	public static void main(String[] args) {
		String errorMessages = StandaloneScriptExecutor.executeScript("config/taxation.vsconfig");
		if(errorMessages!=null) {
			System.out.println(errorMessages);
		}
	}

}