extern crate rmtg_core; use rmtg_core::core_hello; #[test] fn test_core_hello() { // Act let result = core_hello(); // Assert assert_eq!(result, "Hello from rmtg_core!"); // Modify this based on what your function is expected to return }