1 package com.android.globalsearch; 2 3 import android.test.AndroidTestCase; 4 5 /** 6 * Tests GLOBAL_SEARCH_CONTROL protects launching {@link GlobalSearch}. 7 */ 8 public class LaunchSuggestionPermissionTest extends AndroidTestCase { 9 testGlobalSearchRequires_LAUNCH_SUGGESTIONS()10 public void testGlobalSearchRequires_LAUNCH_SUGGESTIONS() { 11 assertActivityRequiresPermission( 12 "com.android.globalsearch", 13 "com.android.globalsearch.GlobalSearch", 14 android.Manifest.permission.GLOBAL_SEARCH_CONTROL); 15 } 16 } 17