()
| 89 | } |
| 90 | |
| 91 | public void testSetNativeMapped() { |
| 92 | Pointer p = new Memory(Native.POINTER_SIZE); |
| 93 | TestPointerType tp = new TestPointerType(p); |
| 94 | |
| 95 | p.setValue(0, tp, tp.getClass()); |
| 96 | |
| 97 | assertEquals("Wrong value written", p, p.getPointer(0)); |
| 98 | } |
| 99 | |
| 100 | public void testGetNativeMapped() { |
| 101 | Pointer p = new Memory(Native.POINTER_SIZE); |
nothing calls this directly
no test coverage detected