Reuse PEM provider in netconf-testtool.
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / test / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / AbstractGeneratorTest.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.config.yangjmxgenerator.plugin;
9
10 import org.apache.commons.io.FileUtils;
11 import org.junit.Before;
12 import org.opendaylight.controller.config.yangjmxgenerator.AbstractYangTest;
13
14 import java.io.File;
15
16 public abstract class AbstractGeneratorTest extends AbstractYangTest {
17     private static final File GENERATOR_OUTPUT_PATH_ROOT = new File(
18             "target/testgen");
19     protected final File generatorOutputPath;
20
21     public AbstractGeneratorTest() {
22         generatorOutputPath = new File(GENERATOR_OUTPUT_PATH_ROOT, getClass()
23                 .getSimpleName());
24     }
25
26     @Before
27     public void cleanUpDirectory() throws Exception {
28         FileUtils.deleteDirectory(generatorOutputPath);
29     }
30
31 }