1/*
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.settings.location;
18
19import static com.google.common.truth.Truth.assertThat;
20
21import com.android.settings.testutils.SettingsRobolectricTestRunner;
22import org.junit.Test;
23import org.junit.runner.RunWith;
24
25@RunWith(SettingsRobolectricTestRunner.class)
26public final class InjectedSettingTest {
27
28    private static final String TEST_STRING = "test";
29
30    @Test
31    public void buildWithoutPackageName_ShouldReturnNull() {
32        assertThat(((new InjectedSetting.Builder())
33                .setClassName(TEST_STRING)
34                .setTitle(TEST_STRING)
35                .setSettingsActivity(TEST_STRING).build())).isNull();
36    }
37
38    private InjectedSetting getTestSetting() {
39        return new InjectedSetting.Builder()
40                .setPackageName(TEST_STRING)
41                .setClassName(TEST_STRING)
42                .setTitle(TEST_STRING)
43                .setSettingsActivity(TEST_STRING).build();
44    }
45
46    @Test
47    public void testEquals() {
48        InjectedSetting setting1 = getTestSetting();
49        InjectedSetting setting2 = getTestSetting();
50        assertThat(setting1).isEqualTo(setting2);
51    }
52
53    @Test
54    public void testHashCode() {
55        InjectedSetting setting = getTestSetting();
56        assertThat(setting.hashCode()).isEqualTo(1225314048);
57    }
58}
59