//dont want to be writing to the registry
public void testRegistryWrite() throws Exception {
if (!TEST_WRITE) {
return;
}
RegistryKey key = RegistryKey.LocalMachine.
createSubKey("SOFTWARE\\Hyperic\\Test", "Hyperic Test");
key.setStringValue("TestString", "Hello World");
key.setIntValue("Test Int", 100);
String[] astrNames = key.getValueNames();
String strValue = key.getStringValue(astrNames[0]);
//assertTrue(strValue.equals("Covalent Test"));
int iValue = key.getIntValue(astrNames[1]);
//assertTrue(iValue == 100);
key = RegistryKey.LocalMachine.openSubKey("SOFTWARE\\Hyperic");
astrNames = key.getSubKeyNames();
// Clean up
key.deleteSubKey("Test");
}