BooterSerializer booterSerializer = new BooterSerializer( forkConfiguration, props );
String aTest = "aTest";
booterSerializer.serialize( getProviderConfiguration(), startupConfiguration, aTest, "never" );
final File propsTest =
SystemPropertyManager.writePropertiesFile( props, forkConfiguration.getTempDirectory(), "propsTest", true );
BooterDeserializer booterDeserializer = new BooterDeserializer( new FileInputStream( propsTest ) );
return booterDeserializer.getProviderConfiguration();
}