Bukkit/src/test/java/org/bukkit/InstrumentTest.java
2012-01-29 11:17:44 +01:00

16 lines
365 B
Java

package org.bukkit;
import static org.hamcrest.CoreMatchers.is;
import static org.junit.Assert.assertThat;
import org.junit.Test;
public class InstrumentTest {
@Test
public void getByType() {
for (Instrument instrument : Instrument.values()) {
assertThat(Instrument.getByType(instrument.getType()), is(instrument));
}
}
}