langtools/test/com/sun/javadoc/testHelpFile/TestHelpFile.java
changeset 23971 f5ff1f5a8dee
parent 14059 3bee341587fa
child 24065 fc4022e50129
equal deleted inserted replaced
23970:76f4acb11952 23971:f5ff1f5a8dee
     1 /*
     1 /*
     2  * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    37     private static final String BUG_ID = "7132631";
    37     private static final String BUG_ID = "7132631";
    38 
    38 
    39     //Javadoc arguments.
    39     //Javadoc arguments.
    40     private static final String[] ARGS = new String[] {
    40     private static final String[] ARGS = new String[] {
    41         "-d", BUG_ID, "-sourcepath", SRC_DIR,
    41         "-d", BUG_ID, "-sourcepath", SRC_DIR,
    42             SRC_DIR + FS + "TestHelpFile.java"
    42             SRC_DIR + "/TestHelpFile.java"
    43     };
    43     };
    44 
    44 
    45     private static final String[][] NEGATED_TEST = NO_TEST;
    45     private static final String[][] NEGATED_TEST = NO_TEST;
    46 
    46 
    47     private static final String[][] TEST = {
    47     private static final String[][] TEST = {
    48         {BUG_ID + FS + "help-doc.html",
    48         {BUG_ID + "/help-doc.html",
    49             "<a href=\"constant-values.html\">Constant Field Values</a>"
    49             "<a href=\"constant-values.html\">Constant Field Values</a>"
    50         },
    50         },
    51     };
    51     };
    52 
    52 
    53     /**
    53     /**