add unit test for equality of INT8 and UINT8
This commit is contained in:
parent
c78d9c6d5c
commit
81f764e5d1
@ -39,4 +39,11 @@ public final class DataTypeTest {
|
||||
assertThat(DataType.fromC(dataType.c())).isEqualTo(dataType);
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testINT8AndUINT8() {
|
||||
assertThat(DataType.INT8.toStringName()).isEqualTo("byte");
|
||||
assertThat(DataType.UINT8.toStringName()).isEqualTo("byte");
|
||||
assertThat(DataType.INT8.toStringName()).isEqualTo(DataType.UINT8.toStringName());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user