()
| 9 | public class SoundTest { |
| 10 | |
| 11 | @Test |
| 12 | public void testCategory() { |
| 13 | for (SoundCategory category : SoundCategory.values()) { |
| 14 | assertNotNull(net.minecraft.sounds.SoundSource.valueOf(category.name()), category + ""); |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | @Test |
| 19 | public void testCategoryReverse() { |