/
niceSOFT
/
swig
Обзор
Документация
Войти
/
niceSOFT
/
swig
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Examples/test-suite/java/naturalvar_more_runme.java
22 строки
702 B
William S Fulton
Add naturalvar_more testcase runtime test
11 окт 2013, 22:42
11 окт 2013, 22:42
e5f9f91
Код
Авторство
О чём код?
import naturalvar_more.*; public class naturalvar_more_runme { static { try { System.loadLibrary("naturalvar_more"); } catch (UnsatisfiedLinkError e) { System.err.println("Native code library failed to load. See the chapter on Dynamic Linking Problems in the SWIG Java documentation for help.\n" + e); System.exit(1); } } public static void main(String argv[]) { S s = new S(); if (!s.getConst_string_member().equals("initial string value")) throw new RuntimeException("Test 1 fail"); s.setString_member("some member value"); if (!s.getString_member().equals("some member value")) throw new RuntimeException("Test 2 fail"); } }