jnat 0.11.2

A wrapper around the jni crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::IntegrationTest;

fn test_static_field(s: String) -> bool {
  return s == "0\n1\n";
}

inventory::submit! {IntegrationTest {
  name: "static_field",
  lib: "static_field",
  java_class: "StaticField",
  test_fn: test_static_field,
}}