Here you can find the source of getRelativePathToTestModule()
public static String getRelativePathToTestModule()
//package com.java2s; //License from project: Open Source License import java.io.File; public class Main { /**//from ww w .jav a 2 s.c o m * * @return relative path to TestModule that runs verticles */ public static String getRelativePathToTestModule() { String relativePathToModule = "." + File.separator + "MainServer" + File.separator + "OurPlatformManager" + File.separator + "target" + File.separator + "TestModule-0.4-SNAPSHOT-mod.zip"; return relativePathToModule; } }