corrected test case

Former-commit-id: 9b678d7c08b3b579bc4b906a42cbf5a2a91bc56b
This commit is contained in:
Jeremy Long
2014-01-26 07:01:23 -05:00
parent b3fd6d8c92
commit 2bd5169f20

View File

@@ -70,7 +70,7 @@ public class DependencyTest {
*/
@Test
public void testSetFileName() {
String fileName = "test.file";
String fileName = "file.tar";
Dependency instance = new Dependency();
instance.setFileName(fileName);
assertEquals(fileName, instance.getFileName());
@@ -81,7 +81,7 @@ public class DependencyTest {
*/
@Test
public void testSetActualFilePath() {
String actualFilePath = "test.file";
String actualFilePath = "file.tar";
Dependency instance = new Dependency();
instance.setActualFilePath(actualFilePath);
assertEquals(actualFilePath, instance.getActualFilePath());
@@ -93,7 +93,7 @@ public class DependencyTest {
@Test
public void testGetActualFilePath() {
Dependency instance = new Dependency();
String expResult = "test.file";
String expResult = "file.tar";
instance.setActualFilePath(expResult);
String result = instance.getActualFilePath();
assertEquals(expResult, result);
@@ -104,7 +104,7 @@ public class DependencyTest {
*/
@Test
public void testSetFilePath() {
String filePath = "test.file";
String filePath = "file.tar";
Dependency instance = new Dependency();
instance.setFilePath(filePath);
assertEquals(filePath, instance.getFilePath());
@@ -116,7 +116,7 @@ public class DependencyTest {
@Test
public void testGetFilePath() {
Dependency instance = new Dependency();
String expResult = "path/test.file";
String expResult = "file.tar";
instance.setFilePath(expResult);
String result = instance.getFilePath();
assertEquals(expResult, result);