Package com.spotify.helios.agent

Examples of com.spotify.helios.agent.AgentParser


    assertEquals("wrong sentry DSN", testDsn, dsn);
  }

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

TOP

Related Classes of com.spotify.helios.agent.AgentParser

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.