blob: f4f55176d840bbd868749bbe7bb127ec71900bf1 [file] [log] [blame]
jovanaka6647762018-06-26 14:09:30 -07001/*
2 * Copyright (C) 2018 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.car.settings.testutils;
18
19import android.widget.Button;
20
21import androidx.fragment.app.DialogFragment;
22
23import com.android.car.settings.R;
24
25/**
26 * Helper methods for DialogFragment testing.
27 */
28public class DialogTestUtils {
29 private DialogTestUtils() {}
30
31 /**
32 * Invokes onClick on the dialog's positive button.
33 */
34 public static void clickPositiveButton(DialogFragment dialogFragment) {
35 Button positiveButton = (Button) dialogFragment.getDialog().getWindow()
36 .findViewById(R.id.positive_button);
37 positiveButton.callOnClick();
38 }
39
40 /**
41 * Invokes onClick on the dialog's negative button.
42 */
43 public static void clickNegativeButton(DialogFragment dialogFragment) {
44 Button negativeButton = (Button) dialogFragment.getDialog().getWindow()
45 .findViewById(R.id.negative_button);
46 negativeButton.callOnClick();
47 }
48}