summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/bukkit/WorldTypeTest.java
blob: d31c20522cd87af8fe65fc7e8daad56863e1bca9 (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 WorldTypeTest {
    @Test
    public void getByName() {
        for (WorldType worldType : WorldType.values()) {
            assertThat(WorldType.getByName(worldType.getName()), is(worldType));
        }
    }
}