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