< prev index next >

test/jdk/com/sun/tools/jextract/staticForwarder/StaticForwarderTest.java

Print this page




   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import org.testng.annotations.Test;
  25 
  26 import java.foreign.Scope;
  27 
  28 import static org.testng.Assert.assertEquals;
  29 import static test.jextract.utils.utils_h.*;
  30 
  31 /*
  32  * @test
  33  * @library ..
  34  * @run driver JtregJextract -t test.jextract.utils -lUtils -- utils.h
  35  * @run testng StaticForwarderTest
  36  */
  37 public class StaticForwarderTest {
  38     @Test
  39     public void test() {
  40         try (Scope sc = scope().fork()) {
  41             assertEquals(square(6), 36);
  42             assertEquals(Color.R, 10);
  43             assertEquals(Color.G, Color.R + 1);
  44             assertEquals(Color.B, Color.G + 1);
  45             assertEquals(abc$get(), 53);
  46             assertEquals(square(abc$get()), 53*53);
  47             abc$set(25);
  48             assertEquals(abc$get(), 25);
  49             assertEquals(THE_ANSWER, 42);


   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import org.testng.annotations.Test;
  25 
  26 import java.foreign.Scope;
  27 
  28 import static org.testng.Assert.assertEquals;
  29 import static test.jextract.utils.utils_lib.*;
  30 
  31 /*
  32  * @test
  33  * @library ..
  34  * @run driver JtregJextract -t test.jextract.utils -lUtils -- utils.h
  35  * @run testng StaticForwarderTest
  36  */
  37 public class StaticForwarderTest {
  38     @Test
  39     public void test() {
  40         try (Scope sc = scope().fork()) {
  41             assertEquals(square(6), 36);
  42             assertEquals(Color.R, 10);
  43             assertEquals(Color.G, Color.R + 1);
  44             assertEquals(Color.B, Color.G + 1);
  45             assertEquals(abc$get(), 53);
  46             assertEquals(square(abc$get()), 53*53);
  47             abc$set(25);
  48             assertEquals(abc$get(), 25);
  49             assertEquals(THE_ANSWER, 42);
< prev index next >