blob: b0c3d005b5cdecc4df08695275b5dd035c98b2df [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005, 2006 QNX Software Systems
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* QNX Software Systems - initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.core.winreg.tests;
import org.eclipse.cdt.utils.WindowsRegistry;
import org.eclipse.core.runtime.Platform;
import junit.framework.TestCase;
public class WinRegTests extends TestCase {
public void test1() {
WindowsRegistry registry = WindowsRegistry.getRegistry();
if (Platform.getOS().equals(Platform.OS_WIN32)) {
assertNotNull(registry);
String value = registry.getLocalMachineValue("SOFTWARE\\Microsoft\\Windows\\CurrentVersion",
"ProgramFilesDir");
// Not sure how you set this to anything else so it seems safe.
assertEquals("C:\\Program Files", value);
} else {
// Should be null on non-Windows platforms
assertNotNull(registry);
}
}
public void test2() {
WindowsRegistry registry = WindowsRegistry.getRegistry();
if (Platform.getOS().equals(Platform.OS_WIN32)) {
assertNotNull(registry);
String value = registry.getLocalMachineValue("SOFTWARE\\Microsoft\\Windows\\CurrentVersion", "Nothing");
// Not sure how you set this to anything else so it seems safe.
assertNull(value);
} else {
// Should be null on non-Windows platforms
assertNotNull(registry);
}
}
}