clean some compilation warnings
[transportpce.git] / servicehandler / src / test / java / org / opendaylight / transportpce / servicehandler / validation / ServiceCreateValidationTest.java
index 5ec1362dc191b46dfd70f7edc0f3d2030b585fff..06958d2049ba6e887c3fe451365a17095846ae6b 100644 (file)
@@ -12,8 +12,6 @@ import org.junit.Assert;
 import org.junit.Test;
 import org.opendaylight.transportpce.common.OperationResult;
 import org.opendaylight.transportpce.servicehandler.utils.ServiceDataUtils;
-import org.opendaylight.transportpce.servicehandler.validation.checks.CheckCoherencyHardSoft;
-import org.opendaylight.transportpce.servicehandler.validation.checks.ServicehandlerTxRxCheck;
 import org.opendaylight.yang.gen.v1.http.org.openroadm.routing.constrains.rev161014.constraints.co.routing.or.general.CoRoutingBuilder;
 import org.opendaylight.yang.gen.v1.http.org.openroadm.routing.constrains.rev161014.routing.constraints.HardConstraintsBuilder;
 import org.opendaylight.yang.gen.v1.http.org.openroadm.routing.constrains.rev161014.routing.constraints.SoftConstraintsBuilder;
@@ -94,22 +92,4 @@ public class ServiceCreateValidationTest {
         OperationResult result = ServiceCreateValidation.validateServiceCreateRequest(input);
         Assert.assertEquals(true, result.isSuccess());
     }
-
-    @Test
-    public void constructServicehandlerTxRxCheck() {
-        ServicehandlerTxRxCheck servicehandlerTxRxCheck = new ServicehandlerTxRxCheck();
-        Assert.assertEquals(ServicehandlerTxRxCheck.class, servicehandlerTxRxCheck.getClass());
-    }
-
-    @Test
-    public void constructCheckCoherencyHardSoft() {
-        CheckCoherencyHardSoft checkCoherencyHardSoft = new  CheckCoherencyHardSoft();
-        Assert.assertEquals(CheckCoherencyHardSoft.class, checkCoherencyHardSoft.getClass());
-    }
-
-    @Test
-    public void constructServiceCreateValidation() {
-        ServiceCreateValidation serviceCreateValidation = new  ServiceCreateValidation();
-        Assert.assertEquals(ServiceCreateValidation.class, serviceCreateValidation.getClass());
-    }
 }