pub fn none<T>(a: &Option<T>)where T: Debug,
Assert that the value is none.
use common_testing::assert; #[test] fn test_1() { let result = None::<&str>; assert::none(&result); }