samples/openfixed/test/org/apidesign/openfixed/AsyncTest.java
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Fri, 03 Apr 2020 16:32:36 +0200
changeset 416 9ed8788a1a4e
permissions -rw-r--r--
Using HTTPS to download the libraries
     1 package org.apidesign.openfixed;
     2 
     3 /** Test the Calculator.createAsynch() behavior.
     4  *
     5  * @author Jaroslav Tulach <jtulach@netbeans.org>
     6  */
     7 public final class AsyncTest extends CalculatorBase {
     8     
     9     public AsyncTest(String testName) {
    10         super(testName);
    11     }
    12 
    13     @Override
    14     protected Calculator create() {
    15         return Calculator.createAsynch();
    16     }
    17 
    18 }