Minimize surefire overrides
[yangtools.git] / yang / yang-model-util / src / test / java / org / opendaylight / yangtools / yang / model / repo / util / InMemorySchemaSourceCacheTest.java
index 40129a7f6c12d085e899f9eadb337d3fc4ff64af..0e59fb072345aef63d5c15101ba6a83402cee637 100644 (file)
@@ -40,15 +40,14 @@ import org.opendaylight.yangtools.yang.model.repo.spi.SchemaSourceRegistry;
 
 @RunWith(MockitoJUnitRunner.StrictStubs.class)
 public class InMemorySchemaSourceCacheTest {
-
-    private static final Class<YangSchemaSourceRepresentation> REPRESENTATION = YangSchemaSourceRepresentation.class;
-    private static final long LIFETIME = 1000L;
-    private static final TimeUnit UNITS = TimeUnit.MILLISECONDS;
+    public static final Class<YangSchemaSourceRepresentation> REPRESENTATION = YangSchemaSourceRepresentation.class;
+    public static final long LIFETIME = 1000L;
+    public static final TimeUnit UNITS = TimeUnit.MILLISECONDS;
 
     @Mock
-    private SchemaSourceRegistry registry;
+    public SchemaSourceRegistry registry;
     @Mock
-    private SchemaSourceRegistration<?> registration;
+    public SchemaSourceRegistration<?> registration;
 
     @Before
     public void setUp() throws Exception {