Package org.mvnsearch.wx

Source Code of org.mvnsearch.wx.ConfTest

package org.mvnsearch.wx;

import junit.framework.TestCase;
import org.mvnsearch.wx.rewrite.Conf;
import org.mvnsearch.wx.rewrite.Rule;

/**
* conf test
*
* @author linux_china
*/
public class ConfTest extends TestCase {

    /**
     * test to construct conf
     *
     * @throws Exception exception
     */
    public void testConstructConf() throws Exception {
        Conf conf = new Conf(null, "classpath:weixin-router.xml");
        for (Rule rule : conf.getRules()) {
            System.out.println(rule);
        }
    }
}
TOP

Related Classes of org.mvnsearch.wx.ConfTest

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.