blob: 78700b88d4bc9fbd8c96e99f68e86c9ac676e95d [file] [log] [blame]
Fabian Kozynski7f370dd2018-12-05 10:41:07 -05001/*
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.systemui.qs;
18
19
20import static junit.framework.TestCase.assertFalse;
21
22import android.support.test.filters.SmallTest;
23import android.testing.AndroidTestingRunner;
24
25import com.android.systemui.SysuiTestCase;
26
27import org.junit.Test;
28import org.junit.runner.RunWith;
29
30import java.util.List;
31
32@RunWith(AndroidTestingRunner.class)
33@SmallTest
34public class QSTileHostTest extends SysuiTestCase {
35
36 @Test
37 public void testLoadTileSpecs_emptySetting() {
38 List<String> tiles = QSTileHost.loadTileSpecs(mContext, "");
39 assertFalse(tiles.isEmpty());
40 }
41
42 @Test
43 public void testLoadTileSpecs_nullSetting() {
44 List<String> tiles = QSTileHost.loadTileSpecs(mContext, null);
45 assertFalse(tiles.isEmpty());
46 }
47}