Skip to content

User Profile

Lucia Jelinkova edited this page Aug 25, 2015 · 15 revisions

User can specify default values for RedDeer execution parameters and Virtual Machine arguments for new RedDeer Test run configuration created either via dialog invoked choosing Run > Run Configuration... menu or via right click on RedDeer test within Package explorer and choosing Run As > RedDeer Test context menu.

These default values are specified for particular user and will be used across all Eclipse workspaces used by user.

To define user specific default values for RedDeer Test run configuration just create standard properties file called .reddeer directly in user home directory. This file should contain all RedDeer execution parameters and their respective default values user want to have properly initialized.

User could use special property vmArgs and this property can be used to specify arguments for Virtual Machine of running test. These arguments will be added to VM arguments on Arguments tab of run configuration.

The second special property is programArgs and this property can be used to specify program arguments for Eclipse instance of running test. These arguments will be added to Program arguments on Arguments tab of run configuration. This could be useful for example for providing path to pluginCustomization.ini.

RedDeer user profile usage example for Linux

RedDeer user profile file location: /home/user/.reddeer

File content:

recordScreenCast=true
logLevel=debug
vmArgs=-Xms256m -Xmx1024m -XX:PermSize=512m -XX:MaxPermSize=512m
programArgs=-pluginCustomization /home/pluginCustomization.ini

Be careful all RedDeer property names are case sensitive.

Clone this wiki locally