Package com.sonyericsson.hudson.plugins.metadata.model.definitions

Examples of com.sonyericsson.hudson.plugins.metadata.model.definitions.StringChoiceMetadataDefinition


     * Tests the conversion from definitions to values for Stringchoices.
     *
     * @throws Exception if so.
     */
    public void testStringChoiceConversion() throws Exception {
        StringChoiceMetadataDefinition def = new StringChoiceMetadataDefinition("choices", "first\nsecond");
        List<AbstractMetadataDefinition> list = new LinkedList<AbstractMetadataDefinition>();
        list.add(def);
        PluginImpl.getInstance().setDefinitions(list);
        FreeStyleProject freeStyleProject = createFreeStyleProject();
        configRoundtrip(freeStyleProject);
View Full Code Here

TOP

Related Classes of com.sonyericsson.hudson.plugins.metadata.model.definitions.StringChoiceMetadataDefinition

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.