Package webit.script.test.tmpls

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

// 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.Template;
import webit.script.exceptions.ResourceNotFoundException;
import webit.script.io.impl.DiscardOut;

/**
*
* @author Zqq
*/
public class HelloTest {

    @Test
    public void test() throws ResourceNotFoundException {
        Template template = EngineManager.getTemplate("/helloTest.wit");
        template.merge(new DiscardOut());
    }
}
TOP

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

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.