1 /* 2 * Copyright (C) 2011 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 17 package libcore.java.lang; 18 19 import java.util.Arrays; 20 import java.util.List; 21 import junit.framework.TestCase; 22 23 public final class PackageTest extends TestCase { 24 /** assign packages immediately so that Class.getPackage() calls cannot side-effect it */ 25 private static final List<Package> packages = Arrays.asList(Package.getPackages()); 26 test_getAnnotations()27 public void test_getAnnotations() throws Exception { 28 // Package annotations aren't supported, but pre-ICS we crashed. 29 assertEquals(0, getClass().getPackage().getAnnotations().length); 30 assertEquals(0, getClass().getPackage().getDeclaredAnnotations().length); 31 } 32 testGetPackage()33 public void testGetPackage() { 34 Package libcoreJavaLang = Package.getPackage("libcore.java.lang"); 35 assertEquals("libcore.java.lang", libcoreJavaLang.getName()); 36 assertEquals(getClass().getPackage(), libcoreJavaLang); 37 } 38 39 // http://b/5171136 testGetPackages()40 public void testGetPackages() { 41 assertTrue(packages.contains(getClass().getPackage())); 42 } 43 } 44