blob: 445969ffd00c3eaa9c2262d7eaeb9cadf4f2f245 [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;
jovanak7cb44972018-08-21 16:48:28 -070020import android.widget.TextView;
jovanaka6647762018-06-26 14:09:30 -070021
22import androidx.fragment.app.DialogFragment;
23
24import com.android.car.settings.R;
25
26/**
27 * Helper methods for DialogFragment testing.
28 */
29public class DialogTestUtils {
30 private DialogTestUtils() {}
31
32 /**
33 * Invokes onClick on the dialog's positive button.
34 */
35 public static void clickPositiveButton(DialogFragment dialogFragment) {
36 Button positiveButton = (Button) dialogFragment.getDialog().getWindow()
37 .findViewById(R.id.positive_button);
38 positiveButton.callOnClick();
39 }
40
41 /**
42 * Invokes onClick on the dialog's negative button.
43 */
jovanak7cb44972018-08-21 16:48:28 -070044 public static void clickNegativeButton(DialogFragment dialogFragment) {
jovanaka6647762018-06-26 14:09:30 -070045 Button negativeButton = (Button) dialogFragment.getDialog().getWindow()
46 .findViewById(R.id.negative_button);
47 negativeButton.callOnClick();
48 }
jovanak7cb44972018-08-21 16:48:28 -070049
50 /**
51 * Gets dialog's title.
52 */
53 public static String getTitle(DialogFragment dialogFragment) {
54 TextView titleView = (TextView) dialogFragment.getDialog().getWindow()
55 .findViewById(R.id.title);
56 return titleView.getText().toString();
57 }
jovanaka6647762018-06-26 14:09:30 -070058}