samples/openfixed/test/org/apidesign/openfixed/BasicTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 30 Oct 2014 20:46:27 +0100
changeset 408 9a439a79c6d0
permissions -rw-r--r--
Use scala 2.10.4 to compile on JDK8
jtulach@374
     1
package org.apidesign.openfixed;
jtulach@374
     2
jtulach@374
     3
/** Test the Calculator.create() behavior.
jtulach@374
     4
 *
jtulach@374
     5
 * @author Jaroslav Tulach <jtulach@netbeans.org>
jtulach@374
     6
 */
jtulach@374
     7
public final class BasicTest extends CalculatorBase {
jtulach@374
     8
    public BasicTest(String testName) {
jtulach@374
     9
        super(testName);
jtulach@374
    10
    }
jtulach@374
    11
jtulach@374
    12
    @Override
jtulach@374
    13
    protected Calculator create() {
jtulach@374
    14
        return Calculator.create();
jtulach@374
    15
    }
jtulach@374
    16
}