X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=binding2%2Fmdsal-binding2-api%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fmdsal%2Fbinding%2Fjavav2%2Fapi%2FDataTreeProducerExceptionTest.java;fp=binding2%2Fmdsal-binding2-api%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fmdsal%2Fbinding%2Fjavav2%2Fapi%2FDataTreeProducerExceptionTest.java;h=0000000000000000000000000000000000000000;hb=c9ced06c906691b0c58f9173fc06400cc565f106;hp=1c6ef6617dc8e23ff3e096961b6eaa2c836f91b6;hpb=b020023b71447f7fd2eee3c1eb4108578346da6d;p=mdsal.git diff --git a/binding2/mdsal-binding2-api/src/test/java/org/opendaylight/mdsal/binding/javav2/api/DataTreeProducerExceptionTest.java b/binding2/mdsal-binding2-api/src/test/java/org/opendaylight/mdsal/binding/javav2/api/DataTreeProducerExceptionTest.java deleted file mode 100644 index 1c6ef6617d..0000000000 --- a/binding2/mdsal-binding2-api/src/test/java/org/opendaylight/mdsal/binding/javav2/api/DataTreeProducerExceptionTest.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.mdsal.binding.javav2.api; - -import org.junit.Test; - -public class DataTreeProducerExceptionTest { - - @Test(expected = DataTreeProducerException.class) - public void constructWithCauseTest() throws Exception { - throw new DataTreeProducerException("test", new Throwable()); - } - - @Test(expected = DataTreeProducerException.class) - public void constructTest() throws Exception { - throw new DataTreeProducerException("test"); - } - -} \ No newline at end of file