Package net.sourceforge.cruisecontrol.publishers.email

Examples of net.sourceforge.cruisecontrol.publishers.email.PropertiesMapper


        return new XMLLogHelper(cruisecontrolElement);
    }

    public void setUp() throws Exception {
        PropertiesMapper propertiesMapper = new PropertiesMapper();
        // create a temp file to test propertiesmapper
        Properties props = new Properties();
        tmpFile = File.createTempFile("cruise", "Test");
        props.setProperty("always1", "always1");
        FileOutputStream fos = new FileOutputStream(tmpFile);
View Full Code Here

TOP

Related Classes of net.sourceforge.cruisecontrol.publishers.email.PropertiesMapper

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.