summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/wipro/www/sonhms/child/TestDetection.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/wipro/www/sonhms/child/TestDetection.java')
-rw-r--r--src/test/java/com/wipro/www/sonhms/child/TestDetection.java117
1 files changed, 0 insertions, 117 deletions
diff --git a/src/test/java/com/wipro/www/sonhms/child/TestDetection.java b/src/test/java/com/wipro/www/sonhms/child/TestDetection.java
deleted file mode 100644
index 03ed787..0000000
--- a/src/test/java/com/wipro/www/sonhms/child/TestDetection.java
+++ /dev/null
@@ -1,117 +0,0 @@
-/*******************************************************************************
- * ============LICENSE_START=======================================================
- * pcims
- * ================================================================================
- * Copyright (C) 2018 Wipro Limited.
- * ==============================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- ******************************************************************************/
-
-package com.wipro.www.sonhms.child;
-
-
-import com.wipro.www.sonhms.child.Detection;
-import com.wipro.www.sonhms.child.Graph;
-import com.wipro.www.sonhms.model.CellPciPair;
-
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.Map;
-
-import org.junit.Test;
-
-
-public class TestDetection {
- @Test
- public void testDetection() {
-
- CellPciPair cpPair = new CellPciPair();
- cpPair.setCellId("32");
- cpPair.setPhysicalCellId(26);
-
- CellPciPair cpPair1 = new CellPciPair();
- cpPair1.setCellId("25");
- cpPair1.setPhysicalCellId(23);
-
- CellPciPair cpPair2 = new CellPciPair();
- cpPair2.setCellId("42");
- cpPair2.setPhysicalCellId(26);
-
- CellPciPair cpPair3 = new CellPciPair();
- cpPair3.setCellId("56");
- cpPair3.setPhysicalCellId(200);
-
- CellPciPair cpPair4 = new CellPciPair();
- cpPair4.setCellId("21");
- cpPair4.setPhysicalCellId(5);
-
- CellPciPair cpPair5 = new CellPciPair();
- cpPair5.setCellId("24");
- cpPair5.setPhysicalCellId(5);
-
- CellPciPair cpPair6 = new CellPciPair();
- cpPair6.setCellId("38");
- cpPair6.setPhysicalCellId(126);
-
- CellPciPair cpPair7 = new CellPciPair();
- cpPair7.setCellId("67");
- cpPair7.setPhysicalCellId(300);
-
- CellPciPair cpPair8 = new CellPciPair();
- cpPair8.setCellId("69");
- cpPair8.setPhysicalCellId(129);
-
- CellPciPair cpPair9 = new CellPciPair();
- cpPair9.setCellId("78");
- cpPair9.setPhysicalCellId(147);
-
- ArrayList<CellPciPair> al = new ArrayList<CellPciPair>();
- al.add(cpPair1);
- al.add(cpPair2);
- al.add(cpPair3);
-
- ArrayList<CellPciPair> al1 = new ArrayList<CellPciPair>();
- al1.add(cpPair4);
- al1.add(cpPair5);
- al1.add(cpPair6);
-
- ArrayList<CellPciPair> al2 = new ArrayList<CellPciPair>();
- al2.add(cpPair7);
- al2.add(cpPair8);
- al2.add(cpPair9);
-
- Map<CellPciPair, ArrayList<CellPciPair>> map = new HashMap<CellPciPair, ArrayList<CellPciPair>>();
-
- map.put(cpPair, al);
- map.put(cpPair1, al1);
- map.put(cpPair2, al2);
- map.put(cpPair3, new ArrayList<CellPciPair>());
- map.put(cpPair4, new ArrayList<CellPciPair>());
- map.put(cpPair5, new ArrayList<CellPciPair>());
- map.put(cpPair6, new ArrayList<CellPciPair>());
- map.put(cpPair7, new ArrayList<CellPciPair>());
- map.put(cpPair8, new ArrayList<CellPciPair>());
- map.put(cpPair9, new ArrayList<CellPciPair>());
- Graph cluster = new Graph();
-
- cluster.setCellPciNeighbourMap(map);
-
- System.out.println("mapsssssss" + cluster.getCellPciNeighbourMap());
- Detection detect = new Detection();
- detect.detectCollisionConfusion(cluster);
- System.out.println("result" + detect.detectCollisionConfusion(cluster));
-
- }
-
-}