()
| 840 | |
| 841 | #[test] |
| 842 | fn test_ordering() { |
| 843 | let _context = crate::quick_init().unwrap(); |
| 844 | let x = UnifiedBox::new(1u64).unwrap(); |
| 845 | let y = UnifiedBox::new(2u64).unwrap(); |
| 846 | |
| 847 | assert!(x < y); |
| 848 | } |
| 849 | } |
| 850 | #[cfg(test)] |
| 851 | mod test_unified_buffer { |
nothing calls this directly
no test coverage detected