(DyeColor dye)
| 11 | public class DyeColorTest { |
| 12 | |
| 13 | @ParameterizedTest |
| 14 | @EnumSource(DyeColor.class) |
| 15 | @SuppressWarnings("deprecation") |
| 16 | public void getByData(DyeColor dye) { |
| 17 | byte data = dye.getWoolData(); |
| 18 | |
| 19 | DyeColor byData = DyeColor.getByWoolData(data); |
| 20 | assertThat(byData, is(dye)); |
| 21 | } |
| 22 | |
| 23 | @ParameterizedTest |
| 24 | @EnumSource(DyeColor.class) |
nothing calls this directly
no test coverage detected