// Set a system property for native dir
System.getProperties().put(ServerConfig.NATIVE_DIR_PROPERTY, wrongNativeDir);
// Create the config
BaseServerConfig config = ServerConfigUtil.getConfig(configProps);
// Test the native dir is expected
String nativeDirProperty = ServerConfigExposition.getNativeDirProperty(config);
TestCase.assertEquals("NATIVE_DIR was not as passed in properties to config", expectedNativeDir,
nativeDirProperty);