Minimize surefire overrides
[yangtools.git] / yang / yang-model-util / src / test / java / org / opendaylight / yangtools / yang / model / repo / util / SchemaSourceTransformerTest.java
index 1abd85be33e80b0512d44385523a7f8c427b3ad0..6fa740ee191fa820e0bff8339c403797a6d5601a 100644 (file)
@@ -36,19 +36,19 @@ import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceRegistry;
 
 @RunWith(MockitoJUnitRunner.class)
 public class SchemaSourceTransformerTest {
-
-    private SchemaSourceTransformer<YangSchemaSourceRepresentation, YinXmlSchemaSource> schema;
-    private static final Class<YangSchemaSourceRepresentation> SRC_CLASS = YangSchemaSourceRepresentation.class;
-    private static final Class<YinXmlSchemaSource> DST_CLASS = YinXmlSchemaSource.class;
+    public static final Class<YangSchemaSourceRepresentation> SRC_CLASS = YangSchemaSourceRepresentation.class;
+    public static final Class<YinXmlSchemaSource> DST_CLASS = YinXmlSchemaSource.class;
 
     @Mock
-    private SchemaRepository provider;
+    public SchemaRepository provider;
 
     @Mock
-    private SchemaSourceRegistry consumer;
+    public SchemaSourceRegistry consumer;
 
     @Mock
-    private AsyncFunction<YangSchemaSourceRepresentation, YinXmlSchemaSource> function;
+    public AsyncFunction<YangSchemaSourceRepresentation, YinXmlSchemaSource> function;
+
+    public SchemaSourceTransformer<YangSchemaSourceRepresentation, YinXmlSchemaSource> schema;
 
     @Test
     public void schemaSourceTransformerTest() {