Package org.jostraca

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


  }



  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

Related Classes of org.jostraca.VirtualTemplatePath

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.