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