summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/bukkit/SoundTest.java
blob: ca45067fbe767bcb596c433921a662daa64f16c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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));
        }
    }
}