16 lines
352 B
Java
16 lines
352 B
Java
package org.bukkit;
|
|
|
|
import static org.hamcrest.CoreMatchers.is;
|
|
import static org.junit.Assert.assertThat;
|
|
|
|
import org.junit.Test;
|
|
|
|
public class StatisticTest {
|
|
@Test
|
|
public void getById() {
|
|
for (Statistic statistic : Statistic.values()) {
|
|
assertThat(Statistic.getById(statistic.getId()), is(statistic));
|
|
}
|
|
}
|
|
}
|