test: rename to tests/ for Rust integration test compatibility

This commit is contained in:
2025-11-12 15:48:24 +01:00
parent f96e85416e
commit 612ee5da6e
3 changed files with 10 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
#[test]
mod tests {
use arc_core::ffi::point::Point;
fn point_creation() {
let p = Point::new(1.0, 2.0, 3.0);
let coords = p.coordinates();
assert_eq!(coords, (1.0, 2.0, 3.0));
}
}