BUG-980: stop emiting copyright
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / test / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / JMXGeneratorGeneratedFilesTrackerTest.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 java.io.File;
11
12 import junit.framework.Assert;
13
14 import org.junit.Test;
15
16 public class JMXGeneratorGeneratedFilesTrackerTest {
17
18     @Test(expected = IllegalStateException.class)
19     public void testGeneratedFilesTracker() throws Exception {
20         JMXGenerator.GeneratedFilesTracker tracker = new JMXGenerator.GeneratedFilesTracker();
21
22         tracker.addFile(new File("./a/b/c"));
23         Assert.assertEquals(1, tracker.getFiles().size());
24         tracker.addFile(new File("./a/b/c"));
25     }
26 }