Uruk hai culture test.

This commit is contained in:
marcins78@gmail.com
2011-12-06 15:39:41 +00:00
parent 03cbba570c
commit bac9beb930
2 changed files with 21 additions and 0 deletions

View File

@@ -10,4 +10,12 @@
<groupId>com.gempukku.lotro</groupId>
<artifactId>gemp-lotr-common</artifactId>
<version>1.0-SNAPSHOT</version>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.9</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>

View File

@@ -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);
}
}