Merge "delete all .class files" into stable/beryllium
[nemo.git] / nemo-tools / sandbox / src / test / java / org / opendaylight / nemo / tool / sandbox / utils / FileUtilsTest.java
1 /*\r
2  * Copyright (c) 2015 Huawei, Inc. and others. All rights reserved.\r
3  *\r
4  * This program and the accompanying materials are made available under the\r
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,\r
6  * and is available at http://www.eclipse.org/legal/epl-v10.html\r
7  */\r
8 package org.opendaylight.nemo.tool.sandbox.utils;\r
9 \r
10 import junit.framework.TestCase;\r
11 import org.junit.Before;\r
12 import org.junit.Test;\r
13 \r
14 import static org.junit.Assert.*;\r
15 \r
16 /**\r
17  * Created by zhangmeng on 2016/1/14.\r
18  */\r
19 public class FileUtilsTest extends TestCase {\r
20     private FileUtils fileUtils;\r
21     @Before\r
22     public void setUp() throws Exception {\r
23         fileUtils = new FileUtils();\r
24     }\r
25 \r
26     @Test\r
27     public void testWrite() throws Exception {\r
28         FileUtils.write("home","test");\r
29     }\r
30 }