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