15 lines
385 B
Java
15 lines
385 B
Java
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));
|
|
}
|
|
}
|
|
}
|