|
Java example source code file (APITest.java)
The APITest.java Java example source code/* * Copyright (c) 2012, 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. */ import java.io.File; import java.io.IOException; import java.lang.annotation.Annotation; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; import java.net.URI; import java.nio.file.DirectoryStream; import java.nio.file.Files; import java.nio.file.Path; import java.util.Arrays; import java.util.HashSet; import java.util.Set; import java.util.TreeSet; import javax.tools.JavaFileObject; import javax.tools.SimpleJavaFileObject; /* * Superclass with utility methods for API tests. */ class APITest { protected APITest() { } /** Marker annotation for test cases. */ @Retention(RetentionPolicy.RUNTIME) @interface Test { } /** Invoke all methods annotated with @Test. */ protected void run() throws Exception { for (Method m: getClass().getDeclaredMethods()) { Annotation a = m.getAnnotation(Test.class); if (a != null) { testCount++; testName = m.getName(); System.err.println("test: " + testName); try { m.invoke(this, new Object[] { }); } catch (InvocationTargetException e) { Throwable cause = e.getCause(); throw (cause instanceof Exception) ? ((Exception) cause) : e; } System.err.println(); } } if (testCount == 0) error("no tests found"); StringBuilder summary = new StringBuilder(); if (testCount != 1) summary.append(testCount).append(" tests"); if (errorCount > 0) { if (summary.length() > 0) summary.append(", "); summary.append(errorCount).append(" errors"); } System.err.println(summary); if (errorCount > 0) throw new Exception(errorCount + " errors found"); } /** * Create a directory in which to store generated doc files. * Avoid using the default (current) directory, so that we can * be sure that javadoc is writing in the intended location, * not a default location. */ protected File getOutDir() { File dir = new File(testName); dir.mkdirs(); return dir; } /** * Create a directory in which to store generated doc files. * Avoid using the default (current) directory, so that we can * be sure that javadoc is writing in the intended location, * not a default location. */ protected File getOutDir(String path) { File dir = new File(testName, path); dir.mkdirs(); return dir; } protected JavaFileObject createSimpleJavaFileObject() { return createSimpleJavaFileObject("pkg/C", "package pkg; public class C { }"); } protected JavaFileObject createSimpleJavaFileObject(final String binaryName, final String content) { return new SimpleJavaFileObject( URI.create("myfo:///" + binaryName + ".java"), JavaFileObject.Kind.SOURCE) { @Override public CharSequence getCharContent(boolean ignoreEncoding) { return content; } }; } protected void checkFiles(File dir, Set<String> expectFiles) { Set<File> files = new HashSet Other Java examples (source code examples)Here is a short list of links related to this Java APITest.java source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 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.