ITypeInfo typeInfo = getTypeInfo();
MEMBERID memid = new MEMBERID(1);
BSTR[] rgBstrNames = new BSTR[1];
UINT cMaxNames = new UINT(1);
UINTByReference pcNames = new UINTByReference();
HRESULT hr = typeInfo.GetNames(memid, rgBstrNames, cMaxNames, pcNames);
COMUtils.checkRC(hr);
assertEquals(0, hr.intValue());
//System.out.println("rgBstrNames: " + rgBstrNames[0].getValue());
//System.out.println("pcNames: " + pcNames.getValue().intValue());
}