blob: eb16a1db58768088e59547725a902dbf9a310613 [file] [log] [blame]
Makoto Onuki6f7362d92016-03-04 13:39:41 -08001
2/*
3 * Copyright (C) 2016 The Android Open Source Project
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17package com.android.server.pm;
18
19import android.content.pm.ShortcutInfo;
20import android.test.AndroidTestCase;
21
22import com.android.server.testutis.TestUtils;
23
24/**
25 * Tests for {@link ShortcutInfo}.
26
27 m FrameworksServicesTests &&
28 adb install \
29 -r -g ${ANDROID_PRODUCT_OUT}/data/app/FrameworksServicesTests/FrameworksServicesTests.apk &&
30 adb shell am instrument -e class com.android.server.pm.ShortcutInfoTest \
31 -w com.android.frameworks.servicestests/android.support.test.runner.AndroidJUnitRunner
32
33 */
34public class ShortcutInfoTest extends AndroidTestCase {
35
36 public void testNoId() {
37 TestUtils.assertExpectException(
38 IllegalArgumentException.class,
39 "ID must be provided",
40 () -> new ShortcutInfo.Builder(mContext).build());
41 }
42
43 // TODO Add more tests.
44}