[JIRA-3148] install only one meter per bandwidth profile on eapol flows

Change-Id: Ie2f1922cf3854b47d9a2d34a44410ef883b3fe2e
diff --git a/app/src/test/java/org/opencord/olt/impl/OltFlowTest.java b/app/src/test/java/org/opencord/olt/impl/OltFlowTest.java
index e0bd109..f259e6f 100644
--- a/app/src/test/java/org/opencord/olt/impl/OltFlowTest.java
+++ b/app/src/test/java/org/opencord/olt/impl/OltFlowTest.java
@@ -48,6 +48,7 @@
 import org.onosproject.net.flowobjective.Objective;
 import org.onosproject.net.meter.MeterId;
 import org.onosproject.net.meter.MeterKey;
+import org.opencord.olt.internalapi.DeviceBandwidthProfile;
 import org.opencord.sadis.BandwidthProfileInformation;
 import org.opencord.sadis.UniTagInformation;
 
@@ -205,6 +206,20 @@
         }
 
         @Override
+        public void addToPendingMeters(DeviceBandwidthProfile deviceBandwidthProfile) {
+
+        }
+
+        @Override
+        public void removeFromPendingMeters(DeviceBandwidthProfile deviceBandwidthProfile) {
+        }
+
+        @Override
+        public boolean isMeterPending(DeviceBandwidthProfile deviceBandwidthProfile) {
+            return false;
+        }
+
+        @Override
         public void clearMeters(DeviceId deviceId) {
         }
     }