blob: a28dfb05be0318bfe0d011dfd74c66441a302392 [file] [log] [blame]
Ihab Awad8de76912015-02-17 12:25:52 -08001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Brad Ebinger2c93c502015-10-28 00:23:54 +000017package com.android.server.telecom.tests;
Ihab Awad8de76912015-02-17 12:25:52 -080018
19import android.content.Context;
Brad Ebingera3eccfe2016-10-05 15:45:22 -070020import android.telecom.Log;
Ihab Awad8de76912015-02-17 12:25:52 -080021
22/**
23 * Helper for Mockito-based test cases.
24 */
25public final class MockitoHelper {
Ihab Awad8de76912015-02-17 12:25:52 -080026 private static final String DEXCACHE = "dexmaker.dexcache";
27
Ihab Awad8de76912015-02-17 12:25:52 -080028 /**
29 * Creates a new helper, which in turn will set the context classloader so
30 * it can load Mockito resources.
31 *
32 * @param packageClass test case class
33 */
34 public void setUp(Context context, Class<?> packageClass) throws Exception {
Ihab Awadaa383cc2015-03-22 22:12:28 -070035 String dexCache = context.getCacheDir().toString();
36 Log.v(this, "Setting property %s to %s", DEXCACHE, dexCache);
37 System.setProperty(DEXCACHE, dexCache);
Ihab Awad8de76912015-02-17 12:25:52 -080038 }
39
40 /**
41 * Restores the context classloader to the previous value.
42 */
43 public void tearDown() throws Exception {
Ihab Awadaa383cc2015-03-22 22:12:28 -070044 Log.v(this, "Restoring context classloaders");
Ihab Awadaa383cc2015-03-22 22:12:28 -070045 Log.v(this, "Clearing property %s", DEXCACHE);
Ihab Awad8de76912015-02-17 12:25:52 -080046 System.clearProperty(DEXCACHE);
47 }
48}