Coverage Report - com.lexicalscope.fluentreflection.MatcherAnyReflectedType
 
Classes in this File Line Coverage Branch Coverage Complexity
MatcherAnyReflectedType
100%
5/5
N/A
1
 
 1  40
 /**
 2  
  * 
 3  
  */
 4  
 package com.lexicalscope.fluentreflection;
 5  
 
 6  
 import org.hamcrest.Description;
 7  
 
 8  56
 final class MatcherAnyReflectedType extends ReflectionMatcher<FluentClass<?>> {
 9  
     @Override
 10  
     public boolean matchesSafely(final FluentClass<?> arg) {
 11  40
         return true;
 12  
     }
 13  
 
 14  
     @Override
 15  
     public void describeTo(final Description description) {
 16  8
         description.appendText("any type");
 17  8
     }
 18  
 }