* src/lib.rs: examples for internel tests * tests/integration_tests.rs: examples for external callable tests Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
8 lines
102 B
Rust
8 lines
102 B
Rust
//use advotracker;
|
|
|
|
#[test]
|
|
fn integration_add_two() {
|
|
assert_eq!(4, advotracker::add_two(2));
|
|
}
|
|
|