40cfc63a234e7f6f9739eb1f176902daf9184594
[controller.git] / opendaylight / archetypes / opendaylight-startup / src / main / resources / archetype-resources / impl / src / test / java / org / opendaylight / yang / gen / v1 / urn / opendaylight / params / xml / ns / yang / __artifactId__ / impl / rev141210 / __classPrefix__ModuleFactoryTest.java
1 #set( $symbol_pound = '#' )
2 #set( $symbol_dollar = '$' )
3 #set( $symbol_escape = '\' )
4 #set( $factory = "${classPrefix}ModuleFactory" )
5 /*
6  * Copyright © ${copyrightYear} ${copyright} and others.  All rights reserved.
7  *
8  * This program and the accompanying materials are made available under the
9  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
10  * and is available at http://www.eclipse.org/legal/epl-v10.html
11  */
12 package org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.${artifactId}.impl.rev141210;
13
14 import org.junit.Test;
15
16 public class ${classPrefix}ModuleFactoryTest {
17     @Test
18     public void testFactoryConstructor() {
19         // ensure no exceptions on construction
20         new ${factory}();
21     }
22 }