1 /* 2 * Copyright (c) 2013, Dienst Landelijk Gebied - Ministerie van Economische Zaken 3 * 4 * Gepubliceerd onder de BSD 2-clause licentie, zie https://github.com/MinELenI/CBSviewer/blob/master/LICENSE.md voor de volledige licentie. 5 */ 6 package nl.mineleni.cbsviewer; 7 8 /** 9 * Marker interface met constanten voor de integratie tests. 10 * 11 * @author prinsmc 12 * 13 */ 14 public abstract class IntegrationTestConstants { 15 /** 16 * Basis url voor de integratie tests, {@value} , poort wordt ingesteld door 17 * Maven, default 8021. 18 */ 19 public static final String BASE_TEST_URL = "http://localhost:" 20 + (System.getProperty("jetty.port") == null ? "8021" : System 21 .getProperty("jetty.port")) + "/"; 22 }