Fix fileEncoding violations for checkstyle
[groupbasedpolicy.git] / renderers / ofoverlay / src / test / java / org / opendaylight / groupbasedpolicy / renderer / ofoverlay / statistics / ReadGbpFlowCacheTaskTest.java
index 873b73dc89840d2032b0a17da941dfdee5f2da51..6ba1ef27311b47ffdae339970f182f387a48947e 100755 (executable)
@@ -1,66 +1,66 @@
-/*\r
- * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.\r
- *\r
- * This program and the accompanying materials are made available under the\r
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
- * and is available at http://www.eclipse.org/legal/epl-v10.html\r
- */\r
-\r
-package org.opendaylight.groupbasedpolicy.renderer.ofoverlay.statistics;\r
-\r
-import static org.mockito.Matchers.any;\r
-import static org.mockito.Matchers.anyString;\r
-import static org.mockito.Mockito.doNothing;\r
-import static org.mockito.Mockito.mock;\r
-import static org.mockito.Mockito.when;\r
-\r
-import javax.ws.rs.core.MultivaluedMap;\r
-\r
-import java.util.concurrent.ScheduledExecutorService;\r
-\r
-import com.sun.jersey.api.client.ClientResponse;\r
-import org.junit.Before;\r
-import org.junit.Test;\r
-import org.mockito.Mockito;\r
-import org.opendaylight.groupbasedpolicy.api.StatisticsManager;\r
-\r
-public class ReadGbpFlowCacheTaskTest {\r
-\r
-    ReadGbpFlowCacheTask task;\r
-    private JsonRestClientResponse response;\r
-\r
-    @Before\r
-    public void init() {\r
-        StatisticsManager statisticsManager = mock(StatisticsManager.class);\r
-        ScheduledExecutorService executor = mock(ScheduledExecutorService.class);\r
-        ClientResponse clientResponse = mock(ClientResponse.class);\r
-        response = mock(JsonRestClientResponse.class);\r
-        when(response.getJsonResponse()).thenReturn("[{\"one\":1, \"two\":2, \"three\":3}]");\r
-        when(response.getStatusCode()).thenReturn(200);\r
-        when(response.getClientResponse()).thenReturn(clientResponse);\r
-        SFlowRTConnection connection = mock(SFlowRTConnection.class);\r
-        when(connection.get(anyString(), Mockito.<MultivaluedMap<String, String>>any())).thenReturn(response);\r
-        when(connection.getExecutor()).thenReturn(executor);\r
-        doNothing().when(executor).execute(any(Runnable.class));\r
-\r
-        task = new ReadGbpFlowCacheTask("cache1", connection, statisticsManager, 100, 0.1, "sum");\r
-    }\r
-\r
-    @Test\r
-    public void testRun() {\r
-        task.run();\r
-    }\r
-\r
-    @Test\r
-    public void testRun_response300() {\r
-        when(response.getStatusCode()).thenReturn(300);\r
-        task.run();\r
-    }\r
-\r
-    @Test\r
-    public void testRun_response400() {\r
-        when(response.getStatusCode()).thenReturn(400);\r
-        task.run();\r
-    }\r
-\r
-}\r
+/*
+ * Copyright (c) 2016 Cisco Systems, Inc. and others. All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+
+package org.opendaylight.groupbasedpolicy.renderer.ofoverlay.statistics;
+
+import static org.mockito.Matchers.any;
+import static org.mockito.Matchers.anyString;
+import static org.mockito.Mockito.doNothing;
+import static org.mockito.Mockito.mock;
+import static org.mockito.Mockito.when;
+
+import javax.ws.rs.core.MultivaluedMap;
+
+import java.util.concurrent.ScheduledExecutorService;
+
+import com.sun.jersey.api.client.ClientResponse;
+import org.junit.Before;
+import org.junit.Test;
+import org.mockito.Mockito;
+import org.opendaylight.groupbasedpolicy.api.StatisticsManager;
+
+public class ReadGbpFlowCacheTaskTest {
+
+    ReadGbpFlowCacheTask task;
+    private JsonRestClientResponse response;
+
+    @Before
+    public void init() {
+        StatisticsManager statisticsManager = mock(StatisticsManager.class);
+        ScheduledExecutorService executor = mock(ScheduledExecutorService.class);
+        ClientResponse clientResponse = mock(ClientResponse.class);
+        response = mock(JsonRestClientResponse.class);
+        when(response.getJsonResponse()).thenReturn("[{\"one\":1, \"two\":2, \"three\":3}]");
+        when(response.getStatusCode()).thenReturn(200);
+        when(response.getClientResponse()).thenReturn(clientResponse);
+        SFlowRTConnection connection = mock(SFlowRTConnection.class);
+        when(connection.get(anyString(), Mockito.<MultivaluedMap<String, String>>any())).thenReturn(response);
+        when(connection.getExecutor()).thenReturn(executor);
+        doNothing().when(executor).execute(any(Runnable.class));
+
+        task = new ReadGbpFlowCacheTask("cache1", connection, statisticsManager, 100, 0.1, "sum");
+    }
+
+    @Test
+    public void testRun() {
+        task.run();
+    }
+
+    @Test
+    public void testRun_response300() {
+        when(response.getStatusCode()).thenReturn(300);
+        task.run();
+    }
+
+    @Test
+    public void testRun_response400() {
+        when(response.getStatusCode()).thenReturn(400);
+        task.run();
+    }
+
+}