()
| 10 | const assert = require('assert'); |
| 11 | |
| 12 | function openLibrary() { |
| 13 | const { lib } = ffi.dlopen(libraryPath, { |
| 14 | add_i32: fixtureSymbols.add_i32, |
| 15 | allocate_memory: fixtureSymbols.allocate_memory, |
| 16 | deallocate_memory: fixtureSymbols.deallocate_memory, |
| 17 | }); |
| 18 | lib.close(); |
| 19 | } |
| 20 | |
| 21 | |
| 22 | { |
no test coverage detected