1
0
Files
libcmo21/Assets/BMapBindings/rusty-bmap/bmap-sys/tests/basic.rs

8 lines
145 B
Rust
Raw Normal View History

2026-02-05 17:18:48 +08:00
use bmap_sys;
#[test]
fn test_init_and_dispose() {
assert!(unsafe { bmap_sys::BMInit() });
assert!(unsafe { bmap_sys::BMDispose() });
}