1/*
2 * Copyright (C) 2016 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
17package com.android.documentsui.files;
18
19import com.android.documentsui.files.ActionHandler;
20import com.android.documentsui.testing.TestEnv;
21
22import org.mockito.Mockito;
23
24public abstract class TestActivity extends AbstractBase {
25
26    public static TestActivity create(TestEnv env) {
27        TestActivity activity = Mockito.mock(TestActivity.class, Mockito.CALLS_REAL_METHODS);
28        activity.init(env);
29        return activity;
30    }
31}
32
33// Trick Mockito into finding our Addons methods correctly. W/o this
34// hack, Mockito thinks Addons methods are not implemented.
35abstract class AbstractBase extends com.android.documentsui.TestActivity
36        implements ActionHandler.Addons {}
37