alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  
" } }; private static final String[][] TEST4 = { {BUG_ID + "-4" + FS + "pkg2" + FS + "class-use" + FS + "C3.html", "<a href=" + "\"../../index.html?pkg2/class-use/C3.html\" target=\"_top\">" + "Frames</a>" } }; private static final String[] ARGS = new String[] { "-d", BUG_ID, "-sourcepath", SRC_DIR, "-use", "pkg1", "pkg2" }; private static final String[] ARGS2 = new String[] { "-d", BUG_ID+"-2", "-sourcepath", SRC_DIR, "-use", "pkg1", "pkg2" }; private static final String[] ARGS3 = new String[] { "-d", BUG_ID + "-3", "-sourcepath", SRC_DIR, "-use", SRC_DIR + FS + "C.java", SRC_DIR + FS + "UsedInC.java" }; private static final String[] ARGS4 = new String[] { "-d", BUG_ID + "-4", "-sourcepath", SRC_DIR, "-use", "pkg1", "pkg2" }; /** * The entry point of the test. * @param args the array of command line arguments. */ public static void main(String[] args) throws Exception { String[][] tests = new String[11][2]; //Eight tests for class use. for (int i = 0; i < 8; i++) { tests[i][0] = BUG_ID + FS + "pkg1" + FS + "class-use" + FS + "C1.html"; tests[i][1] = "Test " + (i + 1) + " passes"; } //Three more tests for package use. for (int i = 8, j = 1; i < tests.length; i++, j++) { tests[i][0] = BUG_ID + FS + "pkg1" + FS + "package-use.html"; tests[i][1] = "Test " + j + " passes"; } TestUseOption tester = new TestUseOption(); run(tester, ARGS, tests, NO_TEST); tester.printSummary(); run(tester, ARGS2, NO_TEST, NO_TEST); String usePageContents = tester.readFileToString(BUG_ID +"-2" + FS + "pkg1" + FS + "class-use" + FS + "UsedClass.html"); int prevIndex = -1; int currentIndex = -1; for (int i = 0; i < TEST2.length; i++) { currentIndex = usePageContents.indexOf(TEST2[i]); System.err.println(TEST2[i] + " at index " + currentIndex); if (currentIndex < prevIndex) throw new Exception(TEST2[i] + " is in the wrong order."); prevIndex = currentIndex; } tester.printSummary(); run(tester, ARGS3, TEST3, NO_TEST); run(tester, ARGS4, TEST4, NO_TEST); tester.printSummary(); } /** * {@inheritDoc} */ public String getBugId() { return BUG_ID; } /** * {@inheritDoc} */ public String getBugName() { return getClass().getName(); } }

Other Java examples (source code examples)

Here is a short list of links related to this Java TestUseOption.java source code file:

Java example source code file (TestUseOption.java)

This example Java source code file (TestUseOption.java) is included in the alvinalexander.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Learn more about this Java project at its project page.

Java - Java tags/keywords

args, bug_id, field, method, no_test, src_dir, string, testuseoption

The TestUseOption.java Java example source code

/*
 * Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/*
 * @test
 * @bug 4496290 4985072 7006178 7068595 8016328
 * @summary A simple test to determine if -use works.
 * @author jamieh
 * @library ../lib/
 * @build JavadocTester
 * @build TestUseOption
 * @run main TestUseOption
 */

public class TestUseOption extends JavadocTester {

    private static final String BUG_ID = "4496290-4985072-7006178-7068595";

    //Input for string search tests.
    private static final String[] TEST2 = {
        "Field in C1.",
        "Field in C2.",
        "Field in C4.",
        "Field in C5.",
        "Field in C6.",
        "Field in C7.",
        "Field in C8.",
        "Method in C1.",
        "Method in C2.",
        "Method in C4.",
        "Method in C5.",
        "Method in C6.",
        "Method in C7.",
        "Method in C8.",
    };

    private static final String[][] TEST3 = {
        {BUG_ID + "-3" + FS + "class-use" + FS + "UsedInC.html", "Uses of <a href=" +
                 "\"../UsedInC.html\" title=\"class in <Unnamed>\">" +
                 "UsedInC</a> in <Unnamed>"
        },
        {BUG_ID + "-3" + FS + "package-use.html", "<td class=\"colOne\">" +
                 "<a href=\"class-use/UsedInC.html#%3CUnnamed%3E\">UsedInC 
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.