Files
advotrackerd/tests/integration_test.rs
Ralf Zerres cb4c96ee63 tests: initial internal and integration tests
* 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>
2019-10-31 17:57:10 +01:00

8 lines
102 B
Rust

//use advotracker;
#[test]
fn integration_add_two() {
assert_eq!(4, advotracker::add_two(2));
}