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);
}