这是我要测试的代码。代码运行正常,因为我在资源中有dependency.xml(它应该在哪里)。它正确执行。
@Component
public class ProjectBuilderBean {
public List<String> getDependencyList() {
List<String> listDeps = new ArrayList<String>();
try {
ClassLoader classLoader = getClass().getClassLoader();
File xmlFile = new File(classLoader.getResource("dependency.xml").getFile());
DocumentBuilderFactory dbFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder dBuilder = dbFactory.newDocumentBuilder();
Document doc = dBuilder.parse(xmlFile);
NodeList nList = doc.getElementsByTagName("dependency");
for (int temp = 0; temp < nList.getLength(); temp++) {
Node nNode = nList.item(temp);
if (nNode.getNodeType() == Node.ELEMENT_NODE) {
Element eElement = (Element) nNode;
String dependency = eElement.getElementsByTagName("artifactId").item(0).getTextContent();
listDeps.add(dependency);
}
}
} catch (Exception e) {
e.printStackTrace();
}
return listDeps;
}
}
这是我写的测试,由于某种原因它总是通过。我不明白为什么以及如何通过,但我知道它不应该这样做。我没有添加任何内容,它仍然通过,即使我添加它传递。这是测试:
@WebAppConfiguration
public class ProjectBuilderBeanTest {
@Mock
private ProjectBuilderController projectBuilderBeanMock;
//Decleration of the Class Instance
@Mock
ProjectBuilderBean projectBuilderBean;
/**
* @throws java.lang.Exception
*/
@Before
public void setUp() throws Exception {
//Initialise the mocking of the class
projectBuilderBean = Mockito.mock(ProjectBuilderBean.class);
}
@Test
public void getDependencyListTest() throws Exception {
ArrayList<String> result = new ArrayList<String>();
result.add("a");
result.add("b");
when(projectBuilderBean.getDependencyList()).thenReturn(result);
}
/**
* @throws java.lang.Exception
*/
@After
public void tearDown() throws Exception {
projectBuilderBean = null;
}
}
只需尝试测试通过dependency.xml文件生成的列表的一致性。
以下是depenedency.xml的屏幕截图:http://screenshot.net/3qoe4s0
答案 0 :(得分:3)
只是为了回应评论者,但你的“测试”总是过去的原因是因为你没有测试任何东西。你正在“锻炼”你的代码。你没有断言任何副作用,你没有验证任何模拟电话。