mirror of
https://github.com/PaperMC/Paper.git
synced 2025-03-29 09:40:24 +01:00
15 lines
379 B
Java
15 lines
379 B
Java
package org.bukkit;
|
|
|
|
import static org.hamcrest.CoreMatchers.is;
|
|
import static org.junit.Assert.assertThat;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class GrassSpeciesTest {
|
|
@Test
|
|
public void getByData() {
|
|
for (GrassSpecies grassSpecies : GrassSpecies.values()) {
|
|
assertThat(GrassSpecies.getByData(grassSpecies.getData()), is(grassSpecies));
|
|
}
|
|
}
|
|
}
|