neo3/neo_config/
mod.rs

1pub use config::*;
2pub use constant::*;
3pub use test_properties::*;
4
5mod config;
6mod constant;
7mod test_properties;
8
9pub(crate) fn add(left: usize, right: usize) -> usize {
10	left + right
11}
12
13#[cfg(test)]
14mod tests {
15	use super::*;
16
17	#[test]
18	fn it_works() {
19		let result = add(2, 2);
20		assert_eq!(result, 4);
21	}
22}