fixed compilation issue due to changes in other classes

Former-commit-id: 1f34406810b81131a2fab354b92a96295c3911cd
This commit is contained in:
Jeremy Long
2013-06-11 06:05:07 -04:00
parent 79e2fd4b52
commit 1951ae1cce

View File

@@ -116,7 +116,7 @@ public class FileNameAnalyzerTest {
* Test of initialize method, of class FileNameAnalyzer.
*/
@Test
public void testInitialize() {
public void testInitialize() throws Exception {
FileNameAnalyzer instance = new FileNameAnalyzer();
instance.initialize();
assertTrue(true); //initialize does nothing.
@@ -126,7 +126,7 @@ public class FileNameAnalyzerTest {
* Test of close method, of class FileNameAnalyzer.
*/
@Test
public void testClose() {
public void testClose() throws Exception {
FileNameAnalyzer instance = new FileNameAnalyzer();
instance.close();
assertTrue(true); //close does nothing.