Remove SDNR seed code
[ccsdk/apps.git] / sdnr / wireless-transport / code-Carbon-SR1 / apps / route / impl / src / test / java / org / opendaylight / route / TestBandwidthCalculator.java
diff --git a/sdnr/wireless-transport/code-Carbon-SR1/apps/route/impl/src/test/java/org/opendaylight/route/TestBandwidthCalculator.java b/sdnr/wireless-transport/code-Carbon-SR1/apps/route/impl/src/test/java/org/opendaylight/route/TestBandwidthCalculator.java
deleted file mode 100644 (file)
index 2763c48..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * Copyright © 2015 ZTE 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.route;
-
-import com.highstreet.technologies.odl.app.impl.tools.BandwidthCalculator;
-import com.highstreet.technologies.odl.app.impl.tools.Unit;
-import org.junit.Test;
-
-import static com.highstreet.technologies.odl.app.impl.tools.Unit.*;
-
-/**
- * Created by odl on 17-6-8.
- */
-public class TestBandwidthCalculator
-{
-    @Test
-    public void testCalc() throws Exception
-    {
-        BandwidthCalculator bc = new BandwidthCalculator(56000, (short) 64, (byte) 90);
-        System.out.println(bc.calc());
-        System.out.println(bc.calc(m_bits_s) + " " + m_bits_s.name());
-        System.out.println(bc.calc(Unit.m_byte_s) + " " + m_byte_s.name());
-        System.out.println(bc.calc(Unit.k_bits_s) + " " + k_bits_s.name());
-    }
-}