()
| 179 | |
| 180 | #[test] |
| 181 | fn test_zeros() { |
| 182 | || -> Result<()> { |
| 183 | let c = simple_context(|g| g.zeros(array_type(vec![1000, 1000], UINT64)))?; |
| 184 | assert!(contexts_deep_equal(optimize_context(&c)?, c)); |
| 185 | Ok(()) |
| 186 | }() |
| 187 | .unwrap(); |
| 188 | } |
| 189 | |
| 190 | #[test] |
| 191 | fn test_ones() { |
nothing calls this directly
no test coverage detected