test/com/sun/javadoc/testAnnotationOptional/TestAnnotationOptional.java

Wed, 08 Oct 2014 12:38:55 -0700

author
katleman
date
Wed, 08 Oct 2014 12:38:55 -0700
changeset 2571
3f9566ffac0f
parent 2101
933ba3f81a87
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Added tag jdk8u40-b09 for changeset 8bb38a350722

jjg@1521 1 /*
bpatel@2101 2 * Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
jjg@1521 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@1521 4 *
jjg@1521 5 * This code is free software; you can redistribute it and/or modify it
jjg@1521 6 * under the terms of the GNU General Public License version 2 only, as
jjg@1521 7 * published by the Free Software Foundation.
jjg@1521 8 *
jjg@1521 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@1521 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@1521 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@1521 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@1521 13 * accompanied this code).
jjg@1521 14 *
jjg@1521 15 * You should have received a copy of the GNU General Public License version
jjg@1521 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@1521 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@1521 18 *
jjg@1521 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@1521 20 * or visit www.oracle.com if you need additional information or have any
jjg@1521 21 * questions.
jjg@1521 22 */
jjg@1521 23
jjg@1521 24 /*
jjg@1521 25 * @test
bpatel@2101 26 * @bug 8025633
bpatel@2101 27 * @summary Make sure that annotations types with optional elements have
jjg@1521 28 * element headers
jjg@1521 29 * @author Mahmood Ali
jjg@1521 30 * @library ../lib/
jjg@1521 31 * @build JavadocTester
jjg@1521 32 * @build TestAnnotationOptional
jjg@1521 33 * @run main TestAnnotationOptional
jjg@1521 34 */
jjg@1521 35
jjg@1521 36 public class TestAnnotationOptional extends JavadocTester {
jjg@1521 37
jjg@1521 38 //Test information.
jjg@1521 39 private static final String BUG_ID = "NO_BUG_ID_YET";
jjg@1521 40
jjg@1521 41 //Javadoc arguments.
jjg@1521 42 private static final String[] ARGS = new String[] {
jjg@1521 43 "-d", BUG_ID, "-sourcepath", SRC_DIR, "-source", "1.5", "pkg"
jjg@1521 44 };
jjg@1521 45
jjg@1521 46 //Input for string search tests.
jjg@1521 47 private static final String[][] TEST = {
jjg@1521 48 {BUG_ID + FS + "pkg" + FS + "AnnotationOptional.html",
bpatel@2101 49 "<a name=\"annotation.type.element.detail\">"
jjg@1521 50 }
jjg@1521 51 };
jjg@1521 52
jjg@1521 53 private static final String[][] NEGATED_TEST = NO_TEST;
jjg@1521 54
jjg@1521 55 /**
jjg@1521 56 * The entry point of the test.
jjg@1521 57 * @param args the array of command line arguments.
jjg@1521 58 */
jjg@1521 59 public static void main(String[] args) {
jjg@1521 60 TestAnnotationOptional tester = new TestAnnotationOptional();
jjg@1521 61 run(tester, ARGS, TEST, NEGATED_TEST);
jjg@1521 62 tester.printSummary();
jjg@1521 63 }
jjg@1521 64
jjg@1521 65 /**
jjg@1521 66 * {@inheritDoc}
jjg@1521 67 */
jjg@1521 68 public String getBugId() {
jjg@1521 69 return BUG_ID;
jjg@1521 70 }
jjg@1521 71
jjg@1521 72 /**
jjg@1521 73 * {@inheritDoc}
jjg@1521 74 */
jjg@1521 75 public String getBugName() {
jjg@1521 76 return getClass().getName();
jjg@1521 77 }
jjg@1521 78 }

mercurial