rt/vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/VMTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Tue, 26 Feb 2013 16:54:16 +0100
changeset 772 d382dacfd73f
parent 372 vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/VMTest.java@3485327d3080
child 797 7b5a053c6763
permissions -rw-r--r--
Moving modules around so the runtime is under one master pom and can be built without building other modules that are in the repository
jaroslav@273
     1
/**
jaroslav@273
     2
 * Back 2 Browser Bytecode Translator
jaroslav@273
     3
 * Copyright (C) 2012 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
jaroslav@273
     4
 *
jaroslav@273
     5
 * This program is free software: you can redistribute it and/or modify
jaroslav@273
     6
 * it under the terms of the GNU General Public License as published by
jaroslav@273
     7
 * the Free Software Foundation, version 2 of the License.
jaroslav@273
     8
 *
jaroslav@273
     9
 * This program is distributed in the hope that it will be useful,
jaroslav@273
    10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
jaroslav@273
    11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
jaroslav@273
    12
 * GNU General Public License for more details.
jaroslav@273
    13
 *
jaroslav@273
    14
 * You should have received a copy of the GNU General Public License
jaroslav@273
    15
 * along with this program. Look for COPYING file in the top folder.
jaroslav@273
    16
 * If not, see http://opensource.org/licenses/GPL-2.0.
jaroslav@273
    17
 */
jaroslav@346
    18
package org.apidesign.bck2brwsr.vmtest;
jaroslav@273
    19
jaroslav@372
    20
import org.apidesign.bck2brwsr.vmtest.impl.CompareCase;
jaroslav@273
    21
import org.testng.annotations.Factory;
jaroslav@273
    22
jaroslav@273
    23
/** A TestNG {@link Factory} that seeks for {@link Compare} annotations
jaroslav@273
    24
 * in provided class and builds set of tests that compare the computations
jaroslav@273
    25
 * in real as well as JavaScript virtual machines. Use as:<pre>
jaroslav@273
    26
 * {@code @}{@link Factory} public static create() {
jaroslav@346
    27
 *   return @{link VMTest}.{@link #create(YourClass.class);
jaroslav@273
    28
 * }</pre>
jaroslav@273
    29
 *
jaroslav@273
    30
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jaroslav@273
    31
 */
jaroslav@372
    32
public final class VMTest {
jaroslav@346
    33
    /** Inspects <code>clazz</code> and for each {@lik Compare} method creates
jaroslav@347
    34
     * instances of tests. Each instance runs the test in different virtual
jaroslav@346
    35
     * machine and at the end they compare the results.
jaroslav@346
    36
     * 
jaroslav@346
    37
     * @param clazz the class to inspect
jaroslav@346
    38
     * @return the set of created tests
jaroslav@346
    39
     */
jaroslav@273
    40
    public static Object[] create(Class<?> clazz) {
jaroslav@372
    41
        return CompareCase.create(clazz);
jaroslav@346
    42
    }
jaroslav@273
    43
}