Eclipse+Spring 하 Ant 자동화 테스트

2439 단어 AntJUnitTDDAgile
더 읽 기
프로젝트 는 MyEclipse 8.6 을 사용 하여 개발 하고 사용 하 는 Spring 입 니 다.다음은 제 자동화 테스트 스 크 립 트 입 니 다.하하
 
/**
*      BeanFactory     
* @author Administrator
*
*/
public class BeanFactory {
private static ApplicationContext context ;
static{
context = new ClassPathXmlApplicationContext("applicationContext.xml");
}
private BeanFactory(){

}
public static Object getBean(String beanName){
return context.getBean(beanName);
}
}
 
/**
 *        
 */
public class SeoKeyServiceTest {
	
	static SeoKeyService seoKeyService;
	@BeforeClass
	public static void init(){
		seoKeyService = (SeoKeyService)BeanFactory.getBean("seoKeyService");
	}
	@Test
	public void testBasic(){
		SeoKeyWord skw = new SeoKeyWordTestFactory().getBrandKeyWord();
		skw = seoKeyService.saveSeoKeyWord(skw);
		assertNotNull(skw);
		seoKeyService.deleteSeoKeyWord(skw.getId());
		skw = seoKeyService.getSeoKeyWordById(skw.getId());
		assertTrue(skw == null);
	}
}

다음은 제 자동화 테스트 스 크 립 트 입 니 다.complie 과정 없 이 Eclipse 의 Build Automatically 를 사용 합 니 다.
 

	
		***    
	
	
	
		
		
	
	
		
	
	
		
		
			
				
				
				
			
			 
			
			 
			 
			
		
	

 

좋은 웹페이지 즐겨찾기