5ecd311caaa91ce2088467f35a04c19b3b932cde
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / retest / ParsingExtensionValueTest.java
1 /*
2  * Copyright (c) 2013 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.yangtools.yang.stmt.retest;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertTrue;
12
13 import org.junit.Test;
14
15 /**
16  * Test for testing of extensions and their arguments.
17  *
18  * @author Lukas Sedlak <lsedlak@cisco.com>
19  */
20 public class ParsingExtensionValueTest {
21
22     @Test
23     public void extensionTest() throws Exception {
24         try {
25             TestUtils.loadModules(getClass().getResource("/extensions").toURI());
26         } catch (Exception e) {
27             assertEquals(IllegalArgumentException.class, e.getClass());
28             assertTrue(e.getMessage().startsWith("ext:id is not a YANG statement or use of extension"));
29         }
30     }
31 }