blob: 988b87eda62ffa5d931188a70407fd968b34fffa [file] [log] [blame] [raw]
package net.glowstone.constants;
import org.bukkit.Sound;
import org.junit.Test;
import static org.junit.Assert.assertTrue;
/**
* Tests for the GlowSound class.
*/
public class SoundTest {
@Test
public void testGetName() {
for (Sound sound : Sound.values()) {
assertTrue("Name missing for sound " + sound, GlowSound.getName(sound) != null);
}
}
}