Bug 5947: refactored common-api tests
[mdsal.git] / common / mdsal-common-api / src / test / java / org / opendaylight / mdsal / common / api / DataValidationFailedExceptionTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.mdsal.common.api;
9
10 import static org.junit.Assert.assertEquals;
11
12 import javax.annotation.Nonnull;
13 import org.junit.Test;
14 import org.opendaylight.yangtools.concepts.Path;
15
16 public class DataValidationFailedExceptionTest {
17
18     @Test(expected = DataValidationFailedException.class)
19     public void dataValidationFailedExceptionTest() throws Exception {
20         final TestClass testClass = new TestClass();
21         final DataValidationFailedException dataValidationFailedException =
22                 new DataValidationFailedException(TestClass.class, testClass, "test");
23
24         assertEquals(testClass, dataValidationFailedException.getPath());
25         assertEquals(TestClass.class, dataValidationFailedException.getPathType());
26
27         throw dataValidationFailedException;
28     }
29
30     private final class TestClass implements Path {
31         @Override
32         public boolean contains(@Nonnull final Path other) {
33             return false;
34         }
35     }
36 }