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