View Javadoc
1   package org.melati.template.test;
2   
3   import org.melati.MelatiConfig;
4   import org.melati.template.webmacro.WebmacroTemplateEngine;
5   import org.melati.util.MelatiException;
6   
7   
8   /**
9    * Test the HTMLMarkupLanguage and its AttributeMarkupLanguage.
10   * 
11   * @author timp
12   * @since 18-May-2006
13   */
14  public class HTMLMarkupLanguageWebmacroTest extends HTMLMarkupLanguageSpec {
15    
16    protected void melatiConfig() throws MelatiException {
17      mc = new MelatiConfig();
18      mc.setTemplateEngine(new WebmacroTemplateEngine());
19    }
20   
21  }