Package org.ngrinder.script.handler

Examples of org.ngrinder.script.handler.JythonScriptHandler


  @Test
  public void testFileTemplate() {
    User user = new User();
    user.setUserName("JunHo Yoon");
    String content = fileEntryService.loadTemplate(user, new JythonScriptHandler(), "http://helloworld/myname/is",
            "hello");
    assertThat(content, containsString("JunHo Yoon"));
    assertThat(content, containsString("http://helloworld/myname/is"));
  }
View Full Code Here

TOP

Related Classes of org.ngrinder.script.handler.JythonScriptHandler

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.