*/
public class AttributeTest {
@Test
public void testNaming() {
String strength = "Strength";
Attribute attribute = Attribute.valueOf(strength.toUpperCase());
assertNotNull(attribute);
assertEquals(attribute, attribute.STRENGTH);
assertEquals(strength, attribute.toString());
}