svoid test_Image2BAsInts() { repeat 1000 { int w = random_incl(1, 32); int h = random_incl(1, 32); Image2B image = randomBinaryImage(w, h); Image2BAsInts image2 = new(image); assertSameImage(image, image2); } }