如何在此junit測試中使用模擬對象? 我需要在junit中實現模擬對象。 需要關於此代碼的幫助。如何在此junit中使用模擬對象
public class TicketTest {
public static List<Ticket> tickList = new ArrayList<Ticket>();
@Before
public void setup() throws Exception {
MockitoAnnotations.initMocks(this);
}
@Test
public void objectValueSetting() throws Exception {
Ticket ticket = new Ticket();
ticket.setDescription("helllo");
ticket.setEmail("[email protected]");
tickList.add(ticket);
}
@Test
public void valueGetting() throws Exception {
Ticket ticket = tickList.get(0);
Assert.assertNotNull(ticket);
Assert.assertNotNull(ticket.getDescription());
Assert.assertNotNull(ticket.getEmail());
}
}
爲什麼你需要嘲笑任何東西?你想要測試什麼?你的問題目前還不清楚。請閱讀http://tinyurl.com/stack-hints –