Examples of VirtualTemplatePath


Examples of org.jostraca.VirtualTemplatePath

  }



  public void testCreate() throws Exception {
    VirtualTemplatePath vtp01 = new VirtualTemplatePath( "vtp01" );
    assertEquals( "vtp01", vtp01.getTemplateName() );

    try {
      VirtualTemplatePath vtp02 = new VirtualTemplatePath( null );
      fail();
    }
    catch( IllegalArgumentException iae ) {}
  }
View Full Code Here

Examples of org.jostraca.VirtualTemplatePath

  }



  public void testCreate() throws Exception {
    VirtualTemplatePath vtp01 = new VirtualTemplatePath( "vtp01", new File("vtp01") );
    assertEquals( "vtp01", vtp01.getTemplateName() );

    try {
      VirtualTemplatePath vtp02 = new VirtualTemplatePath( null, null );
      fail();
    }
    catch( IllegalArgumentException iae ) {}
  }
View Full Code Here
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.