private static final String SPRING_OPTION_CONFIG = "src/testdata/cmd-line-options.xml";
private static final String SPRING_ACTION_CONFIG = "src/testdata/cmd-line-actions.xml";
public void testLoadSupportedOptions() throws CmdLineActionStoreException,
CmdLineOptionStoreException {
SpringCmdLineOptionStore optionStore = new SpringCmdLineOptionStore(
SPRING_OPTION_CONFIG);
Set<CmdLineOption> options = optionStore.loadSupportedOptions();
SpringCmdLineActionStore actionStore = new SpringCmdLineActionStore(
SPRING_ACTION_CONFIG);
Set<CmdLineAction> actions = actionStore.loadSupportedActions();
// Check that all options were loaded.