aboutsummaryrefslogtreecommitdiffstats
path: root/Metrics/Metrics-Calculation/SocialNetwork_plugin/src/ca/mcgill/ecse/socialnetwork/runner/RunnerTests.java
blob: c09c55bebac2efbca70a7b3eb99597d0f155ffe4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package ca.mcgill.ecse.socialnetwork.runner;

import org.junit.Test;

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

public class RunnerTests {
	private static String runWithPath(String path) {
		String message = StandaloneScriptExecutor.executeScript(path);
		return message;
	}
	
	@Test
	public void generateModel() {
		String message = runWithPath("SocialNetworkGeneration.vsconfig");
		System.out.println(message);
	}
}