1 2 3 4 5 6 7 8 9 10
#[cfg(test)] mod tests { use crate::{CountNode, HasKind, RemainderCountNode}; #[test] fn kind() { let node: CountNode = RemainderCountNode::new().into(); assert_eq!(node.kind(), "remainderCountNode"); } }