1ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com/* 2ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * Copyright (C) 2013 The Android Open Source Project 3ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * 4ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * Licensed under the Apache License, Version 2.0 (the "License"); 5ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * you may not use this file except in compliance with the License. 6ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * You may obtain a copy of the License at 7ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * 8ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * http://www.apache.org/licenses/LICENSE-2.0 9ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * 10ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * Unless required by applicable law or agreed to in writing, software 11ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * distributed under the License is distributed on an "AS IS" BASIS, 12ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * See the License for the specific language governing permissions and 14ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com * limitations under the License. 15ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com */ 16ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com 17ec87632c66b964e58a87d7d77fa154326113a027kroot@google.compackage org.junit.runner; 18ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com 19ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com//Note: this class was written without inspecting the junit code 20ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com 21ec87632c66b964e58a87d7d77fa154326113a027kroot@google.comimport java.lang.annotation.ElementType; 22ec87632c66b964e58a87d7d77fa154326113a027kroot@google.comimport java.lang.annotation.Inherited; 23ec87632c66b964e58a87d7d77fa154326113a027kroot@google.comimport java.lang.annotation.Retention; 24ec87632c66b964e58a87d7d77fa154326113a027kroot@google.comimport java.lang.annotation.RetentionPolicy; 25ec87632c66b964e58a87d7d77fa154326113a027kroot@google.comimport java.lang.annotation.Target; 26ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com 27ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com@Retention(RetentionPolicy.RUNTIME) 28ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com@Target(ElementType.TYPE) 29ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com@Inherited 30ec87632c66b964e58a87d7d77fa154326113a027kroot@google.compublic @interface RunWith { 31ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com Class<?> value(); 32ec87632c66b964e58a87d7d77fa154326113a027kroot@google.com} 33