Package com.spotify.helios.master

Examples of com.spotify.helios.master.MasterParser


    testDsn = String.format("udp://1:1@localhost:%d/1", sentryPort);
  }

  @Test
  public void testMasterParserAndConfig() throws Exception {
    final String dsn = new MasterParser("--sentry-dsn", testDsn).getMasterConfig().getSentryDsn();
    assertEquals("wrong sentry DSN", testDsn, dsn);
  }
View Full Code Here

TOP

Related Classes of com.spotify.helios.master.MasterParser

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.