@Test
 public void test_uint32_t() throws IOException {
   for (Long exp : expected_uint32) {
     UnsignedInteger result = binFileReader.uint32_t();
     assertEquals("uint32_t " + exp + " asInt()", exp, result.asLong());
     assertEquals(
         "uint32_t " + exp + " getSignedValue()",
         (Integer) exp.intValue(),
         result.getSignedValue());
     assertEquals(
         "uint32_t " + exp + " toString()",
         Long.toString((((exp < 0 ? exp + 256 : exp)))),
         result.toString());
   }
 }