@Repository
publicclassMyBatisAngelWangimplementsIRepository{
@Autowired
privateGeneralDAO generalDAO;
public<T extendsBase> T get(Class<T> clz,Long id){
HashMap hashMap= generalDAO.getLogically(clz, id);
T ret=this.convert(hashMap, clz);
return ret;
}
}
import org.testng.annotations.Test;
//@DatabaseSetup(value= "/dbunitData/TestAngelEntity.xml")publicclassMyBatisAngelWangTestextendsAbstractRollbackTest{
@Autowired
privateMyBatisAngelWang myBatisAngelWang;
@Test(enabled=false)
publicvoid testGet(){
}
}
10年積累的成都網站建設、做網站經驗,可以快速應對客戶對網站的新想法和需求。提供各種問題對應的解決方案。讓選擇我們的客戶得到更好、更有力的網絡服務。我雖然不認識你,你也不認識我。但先網站設計后付款的網站建設流程,更有尉犁免費網站建設讓你可以放心的選擇與我們合作。import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.TestExecutionListeners;
@ContextConfiguration(locations={"classpath:spring-datasource-dbunit.xml",
"classpath*:spring-services.xml"})
@TestExecutionListeners({DependencyInjectionTestExecutionListener.class,
TransactionDbUnitTestExecutionListener.class,TransactionalTestExecutionListener.class})
@Transactional
publicclassAbstractRollbackTestextendsAbstractTestNGSpringContextTests{
}
@ContextConfiguration("/config/Spring-db.xml")
@Transactional
@ActiveProfiles("test")
publicclassMyBatisAngelWangTestextends
AbstractTransactionalTestNGSpringContextTests{}
<?xml version="1.0" encoding="UTF-8"?>
<beansxmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.2.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-3.2.xsd"default-autowire="byName">
<description>spring-datasource-configuration</description>
<beanclass="com.angel.context.ApplicationContextAwareHelper"/>
<!-- 定義事務管理器(聲明式的事務) -->
<beanid="transactionManager"class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<propertyname="dataSource"ref="dataSource"/>
</bean>
<tx:annotation-driventransaction-manager="transactionManager"/>
<beanid="propertyConfigurer"class="org.springframework.beans.factory.config.PreferencesPlaceholderConfigurer">
<propertyname="locations">
<list>
<value>classpath*:props/datasource_dev.properties</value>
</list>
</property>
</bean>
<beanid="dataSource"class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<propertyname="driverClassName"value="${jdbc.driver}"/>
<propertyname="url"
value="${jdbc.dbunit.url}"/>
<propertyname="username"value="${jdbc.user}"/>
<propertyname="password"value="${jdbc.password}"/>
</bean>
<!-- MyBatis 配置 -->
<beanclass="org.mybatis.spring.mapper.MapperScannerConfigurer">
<propertyname="basePackage"value="com.angel.*.dao"/>
<propertyname="sqlSessionFactoryBeanName"value="xSqlSessionFactory"/>
</bean>
<beanid="xSqlSessionFactory"class="org.mybatis.spring.SqlSessionFactoryBean">
<propertyname="dataSource"ref="dataSource"/>
<propertyname="typeAliasesPackage"value="com.angel.*.entities"/>
<propertyname="configLocation"value="classpath:mybatis/mybatis-config.xml"/>
<propertyname="mapperLocations"value="classpath:/com/angel/dao/*.xml"/>
<propertyname="plugins">
<array>
<!--page interceptor-->
<beanclass="com.angel.orm.db.QueryInterceptor"/>
</array>
</property>
</bean>
<tx:annotation-driventransaction-manager="transactionManager"/>
</beans>
這樣大家測試的數據庫都是同一個了,也不會有任何的相互影響了。因為事務回滾了,不信的話可以提交一條Insert測試哦,執行完后查看數據庫中并沒有插入任何數據。然而,在一個單元測試中,先Insert再get是可以取到數據的,神奇吧?!
publicclassApplicationContextAwareHelperimplementsApplicationContextAware{
privatestaticApplicationContext context;
@Override
publicvoid setApplicationContext(ApplicationContext applicationContext){
context= applicationContext;
}
publicstaticApplicationContext getContext(){
return context;
}
}
DruidDataSource dataSource =ApplicationContextAwareHelper.getBean("dataSource_"+ dataSources[i]);
當然,這不屬于單元測試的范疇了,有點跑題,但是蠻有用的,在這里記一下。
王安琪,英文名Angel,南京郵電大學計算機應用技術碩士學位。 熟悉Java、C#編程語言。專注于WebService、海量數據處理、搜索引擎技術、消息中間件技術、分布式文件存儲、.NET應用程序開發、系統架構設計。主要從事大數據管理系統的研發,項目經理,系統架構師,就職于江蘇金陵科技集團有限公司。
Email:aitanjupt@hotmail.com
QQ:289770363
當前題目:關于單元測試及項目質量管理的總結-創新互聯
標題來源:http://vcdvsql.cn/article20/dgojjo.html
成都網站建設公司_創新互聯,為您提供品牌網站建設、用戶體驗、標簽優化、網站收錄、外貿建站、全網營銷推廣
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯