Coverage Report - org.mule.tck.testmodels.mule.TestDefaultLifecycleAdapter
 
Classes in this File Line Coverage Branch Coverage Complexity
TestDefaultLifecycleAdapter
0%
0/4
N/A
1
 
 1  
 /*
 2  
  * $Id: TestDefaultLifecycleAdapter.java 7963 2007-08-21 08:53:15Z dirk.olmes $
 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.testmodels.mule;
 12  
 
 13  
 import org.mule.impl.DefaultLifecycleAdapter;
 14  
 import org.mule.umo.UMODescriptor;
 15  
 import org.mule.umo.UMOException;
 16  
 import org.mule.umo.model.UMOEntryPointResolver;
 17  
 
 18  
 /**
 19  
  * <code>TestDefaultLifecycleAdapter</code> TODO document
 20  
  */
 21  
 public class TestDefaultLifecycleAdapter extends DefaultLifecycleAdapter
 22  
 {
 23  
     /**
 24  
      * @param component
 25  
      * @param descriptor
 26  
      * @throws UMOException
 27  
      */
 28  
     public TestDefaultLifecycleAdapter(Object component, UMODescriptor descriptor) throws UMOException
 29  
     {
 30  0
         super(component, descriptor);
 31  0
     }
 32  
 
 33  
     /**
 34  
      * @param component
 35  
      * @param descriptor
 36  
      * @param epResolver
 37  
      * @throws UMOException
 38  
      */
 39  
     public TestDefaultLifecycleAdapter(Object component,
 40  
                                        UMODescriptor descriptor,
 41  
                                        UMOEntryPointResolver epResolver) throws UMOException
 42  
     {
 43  0
         super(component, descriptor, epResolver);
 44  0
     }
 45  
 
 46  
 }