• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2023 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 
17 package com.android.settings.utils;
18 
19 import android.os.Bundle;
20 
21 import org.robolectric.android.controller.ActivityController;
22 
23 /*
24  * b/275023433
25  * This class is a workaround for Robolectric, in order to re-enable presubmit
26  * We don't use ActivityController#visible() to avoid test crash
27  */
28 public class ActivityControllerWrapper {
29 
30     private static final boolean ENABLE_WORKAROUND = true;
31 
32 
setup(ActivityController controller)33     public static ActivityController setup(ActivityController controller) {
34         if (ENABLE_WORKAROUND) {
35             return controller.create().start().postCreate(null).resume();
36         } else {
37             return controller.setup();
38         }
39     }
40 
setup(ActivityController controller, Bundle savedState)41     public static ActivityController setup(ActivityController controller, Bundle savedState) {
42         return controller.create(savedState)
43                 .start()
44                 .restoreInstanceState(savedState)
45                 .postCreate(savedState)
46                 .resume();
47     }
48 
49 }
50