5 lines
66 B
Rust
5 lines
66 B
Rust
|
#[test]
|
||
|
fn test_add() {
|
||
|
let x = 2 + 2;
|
||
|
assert_eq!(x, 4);
|
||
|
}
|