1
0
mirror of https://github.com/etesync/android synced 2025-01-15 10:11:18 +00:00
etesync-android/app/src/androidTest/java/at/bitfire/davdroid/TestConstants.java

20 lines
416 B
Java
Raw Normal View History

2014-12-20 21:10:40 +00:00
package at.bitfire.davdroid;
import java.net.URI;
import java.net.URISyntaxException;
import android.util.Log;
2014-12-20 21:10:40 +00:00
public class TestConstants {
public static final String ROBOHYDRA_BASE = "http://10.0.0.11:3000/";
public static URI roboHydra;
static {
try {
roboHydra = new URI(ROBOHYDRA_BASE);
} catch(URISyntaxException e) {
Log.wtf("davdroid.test.Constants", "Invalid RoboHydra base URL");
}
}
}