Merge "Fix checkstyle warnings in yang-jmx-generator-plugin"
[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 static org.junit.Assert.assertEquals;
11
12 import java.io.File;
13 import org.junit.Test;
14
15 public class JMXGeneratorGeneratedFilesTrackerTest {
16
17     @Test(expected = IllegalStateException.class)
18     public void testGeneratedFilesTracker() throws Exception {
19         JMXGenerator.GeneratedFilesTracker tracker = new JMXGenerator.GeneratedFilesTracker();
20
21         tracker.addFile(new File("./a/b/c"));
22         assertEquals(1, tracker.getFiles().size());
23         tracker.addFile(new File("./a/b/c"));
24     }
25 }