Home
last modified time | relevance | path

Searched refs:mMockRunUtil (Results 1 – 25 of 42) sorted by relevance

12

/tools/tradefederation/core/javatests/com/android/tradefed/cluster/
DClusterCommandLauncherTest.java61 private IRunUtil mMockRunUtil; field in ClusterCommandLauncherTest
84 mMockRunUtil = Mockito.mock(IRunUtil.class); in setUp()
139 when(mMockRunUtil.runTimedCmdWithInput( in testRun()
146 Mockito.when(mLauncher.getRunUtil()).thenReturn(mMockRunUtil); in testRun()
150 Mockito.verify(mMockRunUtil, Mockito.times(2)).setWorkingDir(mRootDir); in testRun()
151 Mockito.verify(mMockRunUtil).unsetEnvVariable("TF_GLOBAL_CONFIG"); in testRun()
152 Mockito.verify(mMockRunUtil).setEnvVariable("TF_WORK_DIR", mRootDir.getAbsolutePath()); in testRun()
153 Mockito.verify(mMockRunUtil).setEnvVariable("TF_PATH", expandedTfPathValue); in testRun()
154 Mockito.verify(mMockRunUtil) in testRun()
156 Mockito.verify(mMockRunUtil) in testRun()
[all …]
DTestOutputUploaderTest.java49 private IRunUtil mMockRunUtil; field in TestOutputUploaderTest
55 mMockRunUtil = mock(IRunUtil.class); in setUp()
56 when(mMockRunUtil.runTimedCmdRetry( in setUp()
63 return mMockRunUtil; in setUp()
102 verify(mMockRunUtil) in testUploadFile_httpProtocol_rootPath()
/tools/tradefederation/core/javatests/com/android/tradefed/sandbox/
DTradefedSandboxTest.java69 @Mock IRunUtil mMockRunUtil; field in TradefedSandboxTest
79 return mMockRunUtil; in setUp()
129 .when(mMockRunUtil) in testPrepareEnvironment()
146 verify(mMockRunUtil, times(2)).unsetEnvVariable(GlobalConfiguration.GLOBAL_CONFIG_VARIABLE); in testPrepareEnvironment()
147 verify(mMockRunUtil, times(2)) in testPrepareEnvironment()
149 verify(mMockRunUtil, times(2)).unsetEnvVariable(AutomatedReporters.PROTO_REPORTING_PORT); in testPrepareEnvironment()
150 verify(mMockRunUtil) in testPrepareEnvironment()
153 verify(mMockRunUtil, times(2)).setEnvVariablePriority(EnvPriority.SET); in testPrepareEnvironment()
175 when(mMockRunUtil.runTimedCmd( in testPrepareEnvironment_dumpConfigFail()
193 verify(mMockRunUtil, times(2)).unsetEnvVariable(GlobalConfiguration.GLOBAL_CONFIG_VARIABLE); in testPrepareEnvironment_dumpConfigFail()
[all …]
DSandboxConfigUtilTest.java43 private IRunUtil mMockRunUtil; field in SandboxConfigUtilTest
48 mMockRunUtil = Mockito.mock(IRunUtil.class); in setUp()
66 doReturn(result).when(mMockRunUtil).runTimedCmd(Mockito.anyLong(), Mockito.any()); in testDumpVersion()
72 mMockRunUtil, in testDumpVersion()
91 doReturn(result).when(mMockRunUtil).runTimedCmd(Mockito.anyLong(), Mockito.any()); in testDumpVersion_failed()
94 mTmpRootDir, mMockRunUtil, new String[] {"empty"}, DumpCmd.FULL_XML, null); in testDumpVersion_failed()
107 "", mMockRunUtil, new String[] {"empty"}, DumpCmd.FULL_XML, null, true); in testDumpVersion_badClasspath()
/tools/tradefederation/core/javatests/com/android/tradefed/config/
DSandboxConfigurationFactoryTest.java58 @Mock IRunUtil mMockRunUtil; field in SandboxConfigurationFactoryTest
80 when(mMockRunUtil.runTimedCmd( in expectDumpCmd()
114 args, new StubKeyStoreClient(), mFakeSandbox, mMockRunUtil); in testCreateConfigurationFromArgs()
116 verify(mMockRunUtil, times(2)).unsetEnvVariable(GlobalConfiguration.GLOBAL_CONFIG_VARIABLE); in testCreateConfigurationFromArgs()
117 verify(mMockRunUtil) in testCreateConfigurationFromArgs()
119 verify(mMockRunUtil).unsetEnvVariable(AutomatedReporters.PROTO_REPORTING_PORT); in testCreateConfigurationFromArgs()
120 verify(mMockRunUtil) in testCreateConfigurationFromArgs()
123 verify(mMockRunUtil).setEnvVariablePriority(EnvPriority.SET); in testCreateConfigurationFromArgs()
145 args, new StubKeyStoreClient(), mFakeSandbox, mMockRunUtil); in testCreateConfigurationFromArgs_fail()
151 verify(mMockRunUtil, times(2)).unsetEnvVariable(GlobalConfiguration.GLOBAL_CONFIG_VARIABLE); in testCreateConfigurationFromArgs_fail()
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/device/connection/
DAdbTcpConnectionTest.java50 @Mock IRunUtil mMockRunUtil; field in AdbTcpConnectionTest
62 mMockRunUtil, mMockDevice, mMockBuildInfo, mMockLogger)); in setUp()
74 when(mMockRunUtil.runTimedCmd( in testAdbConnect()
80 when(mMockRunUtil.runTimedCmd( in testAdbConnect()
96 when(mMockRunUtil.runTimedCmd( in testAdbConnect_fails()
104 verify(mMockRunUtil, times(AdbTcpConnection.MAX_RETRIES)) in testAdbConnect_fails()
110 verify(mMockRunUtil, times(AdbTcpConnection.MAX_RETRIES)).sleep(Mockito.anyLong()); in testAdbConnect_fails()
123 when(mMockRunUtil.runTimedCmd( in testAdbConnect_fails_confirmation()
131 verify(mMockRunUtil, times(AdbTcpConnection.MAX_RETRIES * 2)) in testAdbConnect_fails_confirmation()
137 verify(mMockRunUtil, times(AdbTcpConnection.MAX_RETRIES)).sleep(Mockito.anyLong()); in testAdbConnect_fails_confirmation()
[all …]
DAdbSshConnectionTest.java81 @Mock IRunUtil mMockRunUtil; field in AdbSshConnectionTest
115 mMockRunUtil, mMockDevice, mMockBuildInfo, mMockLogger)) { in setUp()
167 when(mMockRunUtil.runTimedCmd( in testPowerwashGce()
219 when(mMockRunUtil.runTimedCmd( in testPowerwashOxygenGce()
242 when(mMockRunUtil.runTimedCmd( in testPowerwashOxygenGce()
285 mMockRunUtil, mMockDevice, mMockBuildInfo, mMockLogger)) { in testPowerwashMultiInstance()
311 when(mMockRunUtil.runTimedCmd( in testPowerwashMultiInstance()
345 mMockRunUtil, mMockDevice, mMockBuildInfo, mMockLogger)) { in testGetRemoteTombstone()
385 mMockRunUtil, mMockDevice, mMockBuildInfo, mMockLogger)) { in testExceptionFromParser()
455 new ConnectionBuilder(mMockRunUtil, mMockDevice, mMockBuildInfo, mMockLogger); in testPreInvocationLaunchedDeviceSetup()
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/adb/
DAdbStopServerPreparerTest.java51 @Mock IRunUtil mMockRunUtil; field in AdbStopServerPreparerTest
69 return mMockRunUtil; in setUp()
91 mMockRunUtil.sleep(2000); in setUp()
110 when(mMockRunUtil.runTimedCmd( in testSetup_tearDown()
113 when(mMockRunUtil.runTimedCmd( in testSetup_tearDown()
131 when(mMockRunUtil.runTimedCmd( in testSetup_fail_tearDown()
136 when(mMockRunUtil.runTimedCmd( in testSetup_fail_tearDown()
160 when(mMockRunUtil.runTimedCmd( in testNoAdb()
163 when(mMockRunUtil.runTimedCmd( in testNoAdb()
196 when(mMockRunUtil.runTimedCmd( in testAdbFromEnv()
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/python/
DPythonBinaryHostTestTest.java74 @Mock IRunUtil mMockRunUtil; field in PythonBinaryHostTestTest
94 return mMockRunUtil; in setUp()
107 mMockRunUtil.setEnvVariable(PythonBinaryHostTest.ANDROID_SERIAL_VAR, "SERIAL"); in setUp()
108 mMockRunUtil.setWorkingDir(Mockito.any()); in setUp()
109 mMockRunUtil.setEnvVariablePriority(EnvPriority.SET); in setUp()
110 mMockRunUtil.setEnvVariable(Mockito.eq("PATH"), Mockito.any()); in setUp()
140 when(mMockRunUtil.runTimedCmd( in testRun()
156 verify(mMockRunUtil) in testRun()
158 verify(mMockRunUtil).setEnvVariable(Mockito.eq("LD_LIBRARY_PATH"), Mockito.any()); in testRun()
195 when(mMockRunUtil.runTimedCmd( in testRun_failWithIncludeFilters()
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/device/cloud/
DHostOrchestratorUtilTest.java49 private IRunUtil mMockRunUtil; field in HostOrchestratorUtilTest
66 mMockRunUtil = Mockito.mock(IRunUtil.class); in setUp()
125 return mMockRunUtil; in testPullCvdHostLogs_Oxygenation_Success()
131 .when(mMockRunUtil) in testPullCvdHostLogs_Oxygenation_Success()
158 return mMockRunUtil; in testPullCvdHostLogs_Oxygenation_CurlFailed()
165 .when(mMockRunUtil) in testPullCvdHostLogs_Oxygenation_CurlFailed()
173 Mockito.verify(mMockRunUtil, times(1)) in testPullCvdHostLogs_Oxygenation_CurlFailed()
205 return mMockRunUtil; in testPullCvdHostLogs_Oxygenation_CreateHOFailed()
210 Mockito.verify(mMockRunUtil, times(0)) in testPullCvdHostLogs_Oxygenation_CreateHOFailed()
242 return mMockRunUtil; in testPullCvdHostLogs_Oxygenation_404()
[all …]
DRemoteFileUtilTest.java45 private IRunUtil mMockRunUtil; field in RemoteFileUtilTest
51 mMockRunUtil = Mockito.mock(IRunUtil.class); in setUp()
64 when(mMockRunUtil.runTimedCmd( in testFetchRemoteFile()
85 fakeInfo, mOptions, mMockRunUtil, 500L, remotePath); in testFetchRemoteFile()
100 when(mMockRunUtil.runTimedCmd( in testFetchRemoteFile_fail()
118 RemoteFileUtil.fetchRemoteFile(fakeInfo, mOptions, mMockRunUtil, 500L, remotePath); in testFetchRemoteFile_fail()
128 when(mMockRunUtil.runTimedCmd( in testFetchRemoteDir()
149 fakeInfo, mOptions, mMockRunUtil, 500L, remotePath); in testFetchRemoteDir()
164 when(mMockRunUtil.runTimedCmd( in testPushFileToRemote()
188 mMockRunUtil, in testPushFileToRemote()
[all …]
DGceSshTunnelMonitorTest.java62 private IRunUtil mMockRunUtil; field in GceSshTunnelMonitorTest
71 mMockRunUtil = Mockito.mock(IRunUtil.class); in setUp()
80 return mMockRunUtil; in setUp()
114 .when(mMockRunUtil) in testInitGce()
119 verify(mMockRunUtil, atLeastOnce()) in testInitGce()
132 .when(mMockRunUtil) in testInitGce_stopAdbdFail()
153 doReturn(null).when(mMockRunUtil).runCmdInBackground(Mockito.anyList()); in testCreateSshTunnel()
169 doNothing().when(mMockRunUtil).sleep(Mockito.anyLong()); in testCheckSshKey()
DGceManagerTest.java70 @Mock IRunUtil mMockRunUtil; field in GceManagerTest
91 return mMockRunUtil; in setUp()
313 return mMockRunUtil; in testBuildGceCommandWithEmulatorBuild()
368 return mMockRunUtil; in testBuildGceCommandWithSpecifiedImages()
509 return mMockRunUtil; in testBuildGceCommandWithExtraFiles()
554 return mMockRunUtil; in testStartGce_timeout()
575 when(mMockRunUtil.runTimedCmd( in testStartGce_timeout()
644 return mMockRunUtil; in testStartGce()
682 when(mMockRunUtil.runTimedCmd(Mockito.anyLong(), (String[]) Mockito.any())).thenReturn(cmd); in testStartGce()
702 return mMockRunUtil; in testStartGce_failed()
[all …]
DNestedRemoteDeviceTest.java46 private IRunUtil mMockRunUtil; field in NestedRemoteDeviceTest
53 mMockRunUtil = Mockito.mock(IRunUtil.class); in setUp()
61 return mMockRunUtil; in setUp()
90 doReturn(powerwash).when(mMockRunUtil).runTimedCmd(Mockito.anyLong(), Mockito.any()); in testResetVirtualDevice()
/tools/tradefederation/core/javatests/com/android/tradefed/device/
DWaitDeviceRecoveryTest.java57 @Mock IRunUtil mMockRunUtil; field in WaitDeviceRecoveryTest
72 return mMockRunUtil; in setUp()
100 verify(mMockRunUtil).sleep(Mockito.anyLong()); in testRecoverDevice_success()
122 verify(mMockRunUtil).sleep(Mockito.anyLong()); in testRecoverDevice_unavailable()
141 verify(mMockRunUtil).sleep(Mockito.anyLong()); in testRecoverDevice_unavailable_recovers()
159 verify(mMockRunUtil).sleep(Mockito.anyLong()); in testRecoverDevice_unavailable_recovery_fail()
171 when(mMockRunUtil.runTimedCmd( in testRecoverDevice_unavailable_fastboot()
189 verify(mMockRunUtil).sleep(Mockito.anyLong()); in testRecoverDevice_unavailable_fastboot()
213 verify(mMockRunUtil).sleep(Mockito.anyLong()); in testRecoverDevice_unresponsive()
234 verify(mMockRunUtil).sleep(Mockito.anyLong()); in testRecoverDevice_unavailable_usb_exception()
[all …]
DAndroidDebugBridgeWrapperTest.java39 @Mock IRunUtil mMockRunUtil; field in AndroidDebugBridgeWrapperTest
49 return mMockRunUtil; in setUp()
60 when(mMockRunUtil.runTimedCmd(anyLong(), eq("fakeadb"), eq("version"))).thenReturn(res); in testAdbVersionParsing()
75 when(mMockRunUtil.runTimedCmd(anyLong(), eq("fakeadb"), eq("version"))).thenReturn(res); in testAdbVersionParsing_altFormat()
88 when(mMockRunUtil.runTimedCmd(anyLong(), eq("fakeadb"), eq("version"))).thenReturn(res); in testAdbVersionParse_runFail()
99 when(mMockRunUtil.runTimedCmd(anyLong(), eq("fakeadb"), eq("version"))).thenReturn(res); in testAdbVersionParsing_partial()
111 when(mMockRunUtil.runTimedCmd(anyLong(), eq("fakeadb"), eq("version"))).thenReturn(res); in testAdbVersionParsing_parseFail()
DFastbootHelperTest.java55 @Mock IRunUtil mMockRunUtil; field in FastbootHelperTest
62 mFastbootHelper = new FastbootHelper(mMockRunUtil, "fastboot"); in setUp()
123 new FastbootHelper(mMockRunUtil, null); in testConstructor_badPath()
129 new FastbootHelper(mMockRunUtil, ""); in testConstructor_badPath()
141 when(mMockRunUtil.runTimedCmdSilently( in testIsFastbootAvailable_oldVersion()
153 when(mMockRunUtil.runTimedCmdSilently( in testIsFastbootAvailable_noBinary()
166 when(mMockRunUtil.runTimedCmdSilently( in testGetDevice_fail()
179 when(mMockRunUtil.runTimedCmd( in testExecuteCommand()
195 when(mMockRunUtil.runTimedCmd( in testExecuteCommand_fail()
211 when(mMockRunUtil.runTimedCmdSilently( in testGetBootloaderAndFastbootdDevices()
/tools/tradefederation/core/javatests/com/android/tradefed/targetprep/
DGsiDeviceFlashPreparerTest.java67 @Mock IRunUtil mMockRunUtil; field in GsiDeviceFlashPreparerTest
93 return mMockRunUtil; in setUp()
128 verify(mMockRunUtil).sleep(Mockito.anyLong()); in verifyExpectations()
212 verify(mMockRunUtil).allowInterrupt(false); in testSetUp_Success_NoVbmetaImage()
214 verify(mMockRunUtil).allowInterrupt(true); in testSetUp_Success_NoVbmetaImage()
254 verify(mMockRunUtil).allowInterrupt(false); in testSetup_Success()
256 verify(mMockRunUtil).allowInterrupt(true); in testSetup_Success()
298 verify(mMockRunUtil).allowInterrupt(false); in testSetup_Success_FromZipFile()
300 verify(mMockRunUtil).allowInterrupt(true); in testSetup_Success_FromZipFile()
345 InOrder inOrder = Mockito.inOrder(mMockDevice, mMockRunUtil); in testSetup_Success_WithGkiBootImg()
[all …]
DPythonVirtualenvPreparerTest.java54 @Mock IRunUtil mMockRunUtil; field in PythonVirtualenvPreparerTest
63 mPreparer.mRunUtil = mMockRunUtil; in setUp()
69 when(mMockRunUtil.runTimedCmd( in testInstallDeps_reqFile_success()
81 when(mMockRunUtil.runTimedCmd(anyLong(), (String) any(), (String) any(), (String) any())) in testInstallDeps_depModule_success()
92 when(mMockRunUtil.runTimedCmd( in testInstallDeps_reqFile_failure()
108 when(mMockRunUtil.runTimedCmd(anyLong(), (String) any(), (String) any(), (String) any())) in testInstallDeps_depModule_failure()
131 when(mMockRunUtil.runTimedCmd(anyLong(), Mockito.eq("virtualenv"), Mockito.eq("--version"))) in testStartVirtualenv_throwTSE_whenVirtualenvNotFound()
151 when(mMockRunUtil.runTimedCmd(anyLong(), Mockito.eq("virtualenv"), Mockito.eq("--version"))) in testStartVirtualenv_throwTSE_whenVirtualenvIsTooOld()
DGkiDeviceFlashPreparerTest.java77 @Mock IRunUtil mMockRunUtil; field in GkiDeviceFlashPreparerTest
103 return mMockRunUtil; in setUp()
270 when(mMockRunUtil.runTimedCmd( in testValidateGkiBootImg_FailToGenerateBootImg()
316 when(mMockRunUtil.runTimedCmd(anyLong(), eq("du"), eq("-b"), eq(bootImg.getAbsolutePath()))) in testAddHashFooter()
318 when(mMockRunUtil.runTimedCmd( in testAddHashFooter()
390 verify(mMockRunUtil).allowInterrupt(false); in testSetup_Success()
391 verify(mMockRunUtil).allowInterrupt(true); in testSetup_Success()
392 verify(mMockRunUtil).sleep(anyLong()); in testSetup_Success()
450 verify(mMockRunUtil).allowInterrupt(false); in testSetup_vendor_img_Success()
451 verify(mMockRunUtil).allowInterrupt(true); in testSetup_vendor_img_Success()
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/device/metric/
DAtraceCollectorTest.java61 @Mock IRunUtil mMockRunUtil; field in AtraceCollectorTest
359 when(mMockRunUtil.runTimedCmd( in testExecutesPostProcessPar()
374 mAtrace.setRunUtil(mMockRunUtil); in testExecutesPostProcessPar()
383 verify(mMockRunUtil, times(1)) in testExecutesPostProcessPar()
404 when(mMockRunUtil.runTimedCmd( in testExecutesPostProcessParDifferentFormat()
416 mAtrace.setRunUtil(mMockRunUtil); in testExecutesPostProcessParDifferentFormat()
425 verify(mMockRunUtil, times(1)) in testExecutesPostProcessParDifferentFormat()
444 when(mMockRunUtil.runTimedCmd( in testExecutesPostProcessParNoStderr()
458 mAtrace.setRunUtil(mMockRunUtil); in testExecutesPostProcessParNoStderr()
467 verify(mMockRunUtil, times(1)) in testExecutesPostProcessParNoStderr()
[all …]
/tools/tradefederation/core/javatests/com/android/tradefed/util/
DNativeCodeCoverageFlusherTest.java52 @Mock IRunUtil mMockRunUtil; field in NativeCodeCoverageFlusherTest
80 mFlusher.setRunUtil(mMockRunUtil); in testClearCoverageMeasurements_rmCommandCalled()
96 mFlusher.setRunUtil(mMockRunUtil); in testNoAdbRootClearCoverageMeasurements_noOp()
119 mFlusher.setRunUtil(mMockRunUtil); in testFlushCoverageAllProcesses_flushAllCommandCalled()
142 mFlusher.setRunUtil(mMockRunUtil); in testFlushCoverageSpecificProcesses_flushSpecificCommandCalled()
162 mFlusher.setRunUtil(mMockRunUtil); in testFlushNotHandled_flushNotCalled()
181 mFlusher.setRunUtil(mMockRunUtil); in testFlushStatusReadFailed_flushNotCalled()
201 mFlusher.setRunUtil(mMockRunUtil); in testFlushStatusReadEmpty_flushNotCalled()
229 mFlusher.setRunUtil(mMockRunUtil); in testFlushOnlySigCgt_flushSpecificProcesses()
243 mFlusher.setRunUtil(mMockRunUtil); in testNoAdbRootFlush_noOp()
DJavaCodeCoverageFlusherTest.java55 @Mock IRunUtil mMockRunUtil; field in JavaCodeCoverageFlusherTest
69 mFlusher.setRunUtil(mMockRunUtil); in testResetAll_calledForAllProcesses()
99 mFlusher.setRunUtil(mMockRunUtil); in testResetSpecific_calledForSpecificProcesses()
119 mFlusher.setRunUtil(mMockRunUtil); in testDumpAll_calledForAllProcesses()
162 mFlusher.setRunUtil(mMockRunUtil); in testDumpSpecific_calledForSpecificProcesses()
/tools/tradefederation/core/javatests/com/android/tradefed/testtype/
DTfTestLauncherTest.java69 @Mock IRunUtil mMockRunUtil; field in TfTestLauncherTest
85 mTfTestLauncher.setRunUtil(mMockRunUtil); in setUp()
106 when(mMockRunUtil.runTimedCmd( in testRun()
151 verify(mMockRunUtil).unsetEnvVariable(GlobalConfiguration.GLOBAL_CONFIG_VARIABLE); in testRun()
152 verify(mMockRunUtil) in testRun()
154 verify(mMockRunUtil).unsetEnvVariable(SubprocessTfLauncher.ANDROID_SERIAL_VAR); in testRun()
156 verify(mMockRunUtil).unsetEnvVariable(variable); in testRun()
158 verify(mMockRunUtil).unsetEnvVariable(EnvVariable.ANDROID_HOST_OUT_TESTCASES.name()); in testRun()
159 verify(mMockRunUtil).unsetEnvVariable(EnvVariable.ANDROID_TARGET_OUT_TESTCASES.name()); in testRun()
160 verify(mMockRunUtil).setEnvVariablePriority(EnvPriority.SET); in testRun()
[all …]
DNoisyDryRunTestTest.java58 @Mock IRunUtil mMockRunUtil; field in NoisyDryRunTestTest
252 mMockRunUtil.unsetEnvVariable(GlobalConfiguration.GLOBAL_CONFIG_SERVER_CONFIG_VARIABLE); in testLoading_sandboxed()
253 mMockRunUtil.unsetEnvVariable(AutomatedReporters.PROTO_REPORTING_PORT); in testLoading_sandboxed()
254 mMockRunUtil.setEnvVariable( in testLoading_sandboxed()
256 mMockRunUtil.setEnvVariablePriority(EnvPriority.SET); in testLoading_sandboxed()
258 when(mMockRunUtil.runTimedCmd( in testLoading_sandboxed()
295 return mMockRunUtil; in testLoading_sandboxed()
302 verify(mMockRunUtil, times(2)).unsetEnvVariable(GlobalConfiguration.GLOBAL_CONFIG_VARIABLE); in testLoading_sandboxed()
310 mMockRunUtil.unsetEnvVariable(GlobalConfiguration.GLOBAL_CONFIG_SERVER_CONFIG_VARIABLE); in testLoading_sandboxed_failed()
311 mMockRunUtil.unsetEnvVariable(AutomatedReporters.PROTO_REPORTING_PORT); in testLoading_sandboxed_failed()
[all …]

12