Fix checkstyle violations
[lispflowmapping.git] / commons / unittest_tools / src / main / java / org / opendaylight / lispflowmapping / tools / junit / BaseExpectations.java
index c2ed1e05f5709bd81a1386ad7d8b4bbfd70745c5..23d154bb09584f3593e779a489c0868b7a4c0d97 100644 (file)
@@ -130,7 +130,7 @@ public abstract class BaseExpectations extends Expectations {
         private String methodName;
         private Method method;
 
-        public MethodAction(Object testInstance, String methodName) {
+        MethodAction(Object testInstance, String methodName) {
             this.testInstance = testInstance;
             this.methodName = methodName;
             method = findMethod(testInstance.getClass());
@@ -177,7 +177,7 @@ public abstract class BaseExpectations extends Expectations {
         private final Object[] values;
         private int i = 0;
 
-        public ActionSequenceValue(Object... values) {
+        ActionSequenceValue(Object... values) {
             this.values = values;
         }
 
@@ -340,14 +340,14 @@ public abstract class BaseExpectations extends Expectations {
         };
     }
 
-    public class StringArrayMatcher extends BaseMatcher<String[]> {
+    public final class StringArrayMatcher extends BaseMatcher<String[]> {
         private final Object[] expected;
 
         /**
          * @param expected
          *            null are considered "any"
          */
-        private StringArrayMatcher(Object... expected) {
+        StringArrayMatcher(Object... expected) {
             this.expected = expected;
         }