Posted on 2012-08-17 11:26
a_alter 閱讀(108)
評論(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 ---");
}
}