我现在在用junit4测试前台方法,我以前也没侧过,自己在摸索着弄,好歹是把报告给运行出来了,下一步就是把方法测试一下,请问怎么测???下面是用junit运行出来的 这里该怎么写方法啊 ,谁能给我写一下举个列子什么的,我现在很模糊 不清楚
public class PageDaoImplTest {

@Before
public void setUp() throws Exception {

} @Test
public void testGetTopHotCloudService() {
assertEquals("","" );
} @Test
public void testGetTopCloudService() {
fail("Not yet implemented");
} @Test
public void testGetWebInfoList() {
fail("Not yet implemented");
} @Test
public void testGetWebInfo() {
fail("Not yet implemented");
} @Test
public void testGetTempletes() {
fail("Not yet implemented");
}}