Package greed.conf

Source Code of greed.conf.ConfigTest

package greed.conf;

import com.typesafe.config.Config;
import com.typesafe.config.ConfigFactory;
import org.junit.Test;

public class ConfigTest {
    @Test
    public void configValidationTest() {
        Config conf = ConfigFactory.load("default");
        conf = conf.resolve();
        if (conf.hasPath("greed"))
            System.out.println(conf.getConfig("greed").toString());
    }
}
TOP

Related Classes of greed.conf.ConfigTest

TOP
Copyright © 2018 www.massapi.com. 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.