Posted on 2012-08-17 11:26
a_alter 阅读(103)
评论(0) 编辑 收藏 所属分类:
项目相关
package com.alter.cms;
import net.sf.ehcache.Cache;
import net.sf.ehcache.CacheManager;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
public class TestCase {
@Before
public void init() {
System.out.println("initilize..");
}
@Test
public void doit() {
}
@Test
public void tes() {
System.out.println("0-----------");
}
@After
public void end() {
System.out.println("end ---");
}
}