summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/bukkit/DifficultyTest.java
blob: 293e283a22fdc2abb387c29239cc3391f7cb6a4f (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 DifficultyTest {
    @Test
    public void getByValue() {
        for (Difficulty difficulty : Difficulty.values()) {
            assertThat(Difficulty.getByValue(difficulty.getValue()), is(difficulty));
        }
    }
}