Skip to content

Commit dd5b9f4

Browse files
添加.gitignore文件,忽略无关配置
1 parent 737feef commit dd5b9f4

File tree

3 files changed

+48
-1
lines changed

3 files changed

+48
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.idea
2+
.idea/workspace.xml

Utils.iml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</content>
1212
<orderEntry type="inheritedJdk" />
1313
<orderEntry type="sourceFolder" forTests="false" />
14-
<orderEntry type="library" name="Maven: junit:junit:4.12" level="project" />
14+
<orderEntry type="library" name="Maven: junit:junit:4.13-beta-2" level="project" />
1515
<orderEntry type="library" name="Maven: org.hamcrest:hamcrest-core:1.3" level="project" />
1616
<orderEntry type="library" name="Maven: dom4j:dom4j:1.6.1" level="project" />
1717
<orderEntry type="library" name="Maven: xml-apis:xml-apis:1.0.b2" level="project" />
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
package test.com;
2+
3+
import org.junit.Test;
4+
import org.junit.Before;
5+
import org.junit.After;
6+
7+
/**
8+
* CsvUtils Tester.
9+
*
10+
* @author <Authors name>
11+
* @since <pre>05/07/2018</pre>
12+
* @version 1.0
13+
*/
14+
public class CsvUtilsTest {
15+
16+
@Before
17+
public void before() throws Exception {
18+
}
19+
20+
@After
21+
public void after() throws Exception {
22+
}
23+
24+
/**
25+
*
26+
* Method: createCSVFile(String[] heads, List<Object[]> rows, String outPutPath, String filename)
27+
*
28+
*/
29+
@Test
30+
public void testCreateCSVFile() throws Exception {
31+
//TODO: Test goes here...
32+
}
33+
34+
/**
35+
*
36+
* Method: ReadCSV(String filePath)
37+
*
38+
*/
39+
@Test
40+
public void testReadCSV() throws Exception {
41+
//TODO: Test goes here...
42+
}
43+
44+
45+
}

0 commit comments

Comments
 (0)