1   package com.lexicalscope.fluentreflection;
2   
3   import static com.lexicalscope.fluentreflection.ReflectionMatchers.anyReflectedType;
4   import static org.hamcrest.Matchers.equalTo;
5   
6   import org.hamcrest.Matcher;
7   
8   public class TestMatcherAnyReflectedType extends AbstractTestReflectionMatcher<FluentClass<?>> {
9       @Override
10      protected ReflectionMatcher<FluentClass<?>> matcher() {
11          return anyReflectedType();
12      }
13  
14      @Override
15      protected Matcher<String> hasDescription() {
16          return equalTo("any type");
17      }
18  
19      @Override
20      protected FluentClass<?> target() {
21          return type;
22      }
23  
24      @Override
25      protected FluentClass<?> failingTarget() {
26          return null;
27      }
28  }