()
| 830 | |
| 831 | #[test] |
| 832 | fn test_equality() { |
| 833 | let _context = crate::quick_init().unwrap(); |
| 834 | let x = UnifiedBox::new(5u64).unwrap(); |
| 835 | let y = UnifiedBox::new(5u64).unwrap(); |
| 836 | let z = UnifiedBox::new(0u64).unwrap(); |
| 837 | assert_eq!(x, y); |
| 838 | assert!(x != z); |
| 839 | } |
| 840 | |
| 841 | #[test] |
| 842 | fn test_ordering() { |
nothing calls this directly
no test coverage detected