mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2025-08-21 05:44:33 +00:00
18 lines
336 B
Java
18 lines
336 B
Java
![]() |
package org.bukkit;
|
||
|
|
||
|
import static org.junit.Assert.assertNotNull;
|
||
|
|
||
|
import org.bukkit.craftbukkit.CraftSound;
|
||
|
import org.junit.Test;
|
||
|
|
||
|
|
||
|
public class SoundTest {
|
||
|
|
||
|
@Test
|
||
|
public void testGetSound() {
|
||
|
for (Sound sound : Sound.values()) {
|
||
|
assertNotNull(sound.name(), CraftSound.getSound(sound));
|
||
|
}
|
||
|
}
|
||
|
}
|