Files
Paper/paper-api/src/test/java/org/bukkit/InstrumentTest.java
2019-04-23 14:33:57 +10:00

15 lines
354 B
Java

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