7171ee92b0e2a08ed0fd3d8adcc242e50a9652ef
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-to-sources-plugin-it / src / test / java / org / opendaylight / controller / yang2sources / plugin / it / CombineTest.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.controller.yang2sources.plugin.it;
9
10 import org.apache.maven.it.VerificationException;
11 import org.apache.maven.it.Verifier;
12 import org.junit.Test;
13
14 public class CombineTest {
15
16     @Test
17     public void testCorrect() throws VerificationException {
18         Verifier v = YangToSourcesPluginTest.setUp("Correct_combined/", false);
19         YangToResourcesPluginTest.verifyCorrectLog(v);
20         YangToSourcesPluginTest.verifyCorrectLog(v);
21     }
22
23 }