Coverage Report - org.mule.tck.config.TestNamespaceHandler
 
Classes in this File Line Coverage Branch Coverage Complexity
TestNamespaceHandler
100%
5/5
N/A
1
 
 1  
 /*
 2  
  * $Id: TestNamespaceHandler.java 12017 2008-06-12 09:04:04Z rossmason $
 3  
  * --------------------------------------------------------------------------------------
 4  
  * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com
 5  
  *
 6  
  * The software in this package is published under the terms of the CPAL v1.0
 7  
  * license, a copy of which has been included with this distribution in the
 8  
  * LICENSE.txt file.
 9  
  */
 10  
 
 11  
 package org.mule.tck.config;
 12  
 
 13  
 import org.mule.config.spring.handlers.AbstractMuleNamespaceHandler;
 14  
 
 15  6
 public class TestNamespaceHandler extends AbstractMuleNamespaceHandler
 16  
 {
 17  
 
 18  
     public void init()
 19  
     {
 20  6
         registerBeanDefinitionParser("component", new TestComponentDefinitionParser());
 21  
         //This is handled by the TestComponentDefinitionParser
 22  6
         registerIgnoredElement("return-data");
 23  6
         registerIgnoredElement("callback");
 24  6
     }
 25  
 
 26  
 }