package org.bukkit; import static org.bukkit.support.MatcherAssert.*; import static org.hamcrest.CoreMatchers.*; import org.junit.jupiter.api.Test; public class DifficultyTest { @Test public void getByValue() { for (Difficulty difficulty : Difficulty.values()) { assertThat(Difficulty.getByValue(difficulty.getValue()), is(difficulty)); } } }