()
| 414 | |
| 415 | #[test] |
| 416 | fn generate_name_format() { |
| 417 | for _ in 0..100 { |
| 418 | let name = generate_name(); |
| 419 | assert_eq!(name.len(), 6); |
| 420 | assert!(name.chars().all(|c| c.is_ascii_lowercase())); |
| 421 | } |
| 422 | } |
| 423 | |
| 424 | impl ObjectType for ObjectForTest { |
| 425 | fn object_type() -> &'static str { |
nothing calls this directly
no test coverage detected