Files
ultimate_rust2/exercise/testing/tests/more_tests.rs
2026-05-26 14:42:05 +04:00

7 lines
145 B
Rust

use testing::{splish, sploosh};
#[test]
pub fn test_sploosh_splish() {
assert_eq!(sploosh(splish(-1, 0), splish(1, 1), splish(3, 2)), 4);
}