/**
* This tests the method getPropertyValue(String elementName, String attributeName, Object key)
*/
public void testGetPropertyValue() throws Exception {
TextAsset textAsset = new TextAsset();
Object expectedValue = PropertyValueLookUp.getPropertyValue(textAsset.getClass(), "valueType", new Integer(1));
assertNotNull(expectedValue);
Object testValue = PropertyValueLookUp.getPropertyValue("textAsset", "valueType", new Integer(1));
assertNotNull(testValue);
assertEquals(expectedValue, testValue);
}