コード例 #1
0
 @Test
 public void test_float32_t() throws IOException {
   for (Float exp : expected_float32) {
     Float result = binFileReader.float32_t();
     assertEquals("float32_t", exp, result);
     assertEquals("float32_t toString()", exp.toString(), result.toString());
   }
 }