Uruk hai culture test.
This commit is contained in:
@@ -10,4 +10,12 @@
|
|||||||
<groupId>com.gempukku.lotro</groupId>
|
<groupId>com.gempukku.lotro</groupId>
|
||||||
<artifactId>gemp-lotr-common</artifactId>
|
<artifactId>gemp-lotr-common</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>junit</groupId>
|
||||||
|
<artifactId>junit</artifactId>
|
||||||
|
<version>4.9</version>
|
||||||
|
<scope>test</scope>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
</project>
|
</project>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
package com.gempukku.lotro.common;
|
||||||
|
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import static junit.framework.Assert.assertSame;
|
||||||
|
|
||||||
|
public class CultureTest {
|
||||||
|
@Test
|
||||||
|
public void urukHaiEnum() {
|
||||||
|
Culture urukHai = Enum.valueOf(Culture.class, "URUK_HAI");
|
||||||
|
assertSame(Culture.URUK_HAI, urukHai);
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user