Coverage Report - org.apache.commons.latka.jelly.LatkaTagLibrary
 
Classes in this File Line Coverage Branch Coverage Complexity
LatkaTagLibrary
0%
0/23
0%
0/40
1
 
 1  
 /*
 2  
  * Copyright 1999-2001,2004 The Apache Software Foundation.
 3  
  * 
 4  
  * Licensed under the Apache License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  * 
 8  
  *      http://www.apache.org/licenses/LICENSE-2.0
 9  
  * 
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 
 17  
 package org.apache.commons.latka.jelly;
 18  
 
 19  
 import org.apache.commons.jelly.TagLibrary;
 20  
 
 21  
 /**
 22  
  * A Jelly version of Latka
 23  
  *
 24  
  * @author  Morgan Delagrange
 25  
  * @version
 26  
  * $Id: LatkaTagLibrary.java 155424 2005-02-26 13:09:29Z dirkv $
 27  
  */
 28  
 public class LatkaTagLibrary extends TagLibrary {
 29  
     
 30  
     /** Creates a new instance of LatkaTagLibrary */
 31  0
     public LatkaTagLibrary() {
 32  0
         registerTag("credentials",
 33  0
                     CredentialsTag.class);
 34  0
         registerTag("param",
 35  
                     ParameterTag.class);
 36  0
         registerTag("paramName",
 37  
                     ParameterNameTag.class);
 38  0
         registerTag("paramValue",
 39  
                     ParameterValueTag.class);        
 40  0
         registerTag("reportMessage", 
 41  
                     ReportMessageTag.class);
 42  0
         registerTag("request",  
 43  
                     RequestTag.class);
 44  0
         registerTag("requestBody",
 45  
                     RequestBodyTag.class);
 46  0
         registerTag("requestHeader",
 47  
                     RequestHeaderTag.class);
 48  0
         registerTag("session", 
 49  
                     SessionTag.class);        
 50  0
         registerTag("suite", 
 51  
                     SuiteTag.class);
 52  0
         registerTag("validate", 
 53  
                     ValidateTag.class);
 54  0
         registerTag("byteLength", 
 55  
                     org.apache.commons.latka.jelly.validators.ByteLengthTag.class);
 56  0
         registerTag("cookie",     
 57  
                     org.apache.commons.latka.jelly.validators.CookieTag.class);
 58  0
         registerTag("goldenFile", 
 59  
                     org.apache.commons.latka.jelly.validators.GoldenFileTag.class);
 60  0
         registerTag("maxRequestTime", 
 61  
                     org.apache.commons.latka.jelly.validators.MaxRequestTimeTag.class);
 62  0
         registerTag("regexp",     
 63  
                     org.apache.commons.latka.jelly.validators.RegexpTag.class);
 64  0
         registerTag("responseHeader", 
 65  
                     org.apache.commons.latka.jelly.validators.ResponseHeaderTag.class);
 66  0
         registerTag("statusCode",
 67  
                     org.apache.commons.latka.jelly.validators.StatusCodeTag.class);
 68  0
         registerTag("statusText",
 69  
                     org.apache.commons.latka.jelly.validators.StatusTextTag.class);
 70  0
         registerTag("xpath",
 71  
                     org.apache.commons.latka.jelly.validators.XPathTag.class);
 72  0
     }
 73  
     
 74  
 }