454647484950515253
public void setup() throws FixtureException { if (useBrowserMobProxyManager()) { try { initializeProxy(getAvailablePort()); } catch (Exception e) { throw new FixtureException("Failed to initialize proxy", e); } } }
66676869707172737475
public void shutdown() { if (threadLocalproxyServer.get() != null) { try { threadLocalproxyServer.get().stop(); } catch (Exception e) { throw new FixtureException("Could not shut down BrowserMob proxy", e); } threadLocalproxyServer.remove(); } }