mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 12:13:54 -07:00
16 lines
368 B
Java
16 lines
368 B
Java
package org.bukkit;
|
|
|
|
import static org.hamcrest.CoreMatchers.is;
|
|
import static org.junit.Assert.assertThat;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class DifficultyTest {
|
|
@Test
|
|
public void getByValue() {
|
|
for (Difficulty difficulty : Difficulty.values()) {
|
|
assertThat(Difficulty.getByValue(difficulty.getValue()), is(difficulty));
|
|
}
|
|
}
|
|
}
|