Package webit.script.test.tmpls

Source Code of webit.script.test.tmpls.RouteLoaderTest

// Copyright (c) 2013-2014, Webit Team. All Rights Reserved.
package webit.script.test.tmpls;

import org.junit.Test;
import webit.script.EngineManager;
import webit.script.exceptions.ResourceNotFoundException;
import webit.script.io.impl.DiscardOut;

/**
*
* @author zqq90
*/
public class RouteLoaderTest {

    @Test
    public void test() throws ResourceNotFoundException {

        DiscardOut out = new DiscardOut();

        EngineManager.getTemplate("lib:/lib.wit").merge(out);
        EngineManager.getTemplate("lib:sub:/lib-sub.wit").merge(out);
    }
}
TOP

Related Classes of webit.script.test.tmpls.RouteLoaderTest

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.