summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/bukkit/CoalTypeTest.java
blob: 7eb11ceaf74835a35343ee11d6d3156714b4a408 (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 CoalTypeTest {
    @Test
    public void getByData() {
        for (CoalType coalType : CoalType.values()) {
            assertThat(CoalType.getByData(coalType.getData()), is(coalType));
        }
    }
}