91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot中怎么實現一個項目測試類

發布時間:2021-06-17 14:25:20 來源:億速云 閱讀:170 作者:Leah 欄目:編程語言

這篇文章給大家介紹SpringBoot中怎么實現一個項目測試類,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1.

package soundsystem;

import static org.junit.Assert.*;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes=CDPlayerConfig.class)
public class CDPlayerTest {

 @Autowired
 private CompactDisc cd;

 @Test
 public void cdShouldNotBeNull() {
  assertNotNull(cd);
 }

}

CDPlayerTest使用了Spring的SpringJUnit4ClassRunner,以便在測試開始的時候自動創建Spring的應用上下文。

注解@ContextConfiguration會告訴它需要在CDPlayerConfig中加載配置。

因為CDPlayerConfig類中包含了@ComponentScan,因此最終的應用上下文中應該包含CompactDiscbean。

2.

package com.baizhi.cmfz;


import com.baizhi.cmfz.dao.BannerDao;
import com.baizhi.cmfz.entiy.Banner;
import com.baizhi.cmfz.service.BannerService;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

import java.util.Date;
import java.util.List;
import java.util.Map;

@RunWith(SpringRunner.class)
@SpringBootTest
public class BannerTest {


  @Autowired
  private BannerDao dao;
  @Autowired
  private BannerService service;


  @Test
  public void test1(){
    List<Banner> list = dao.selectAllBanner(1,10,null);
    for (Banner banner : list) {
      System.out.println(banner);
    }
  }

}

關于SpringBoot中怎么實現一個項目測試類就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

青海省| 襄垣县| 平乐县| 布尔津县| 阳城县| 安康市| 商水县| 永安市| 霸州市| 若尔盖县| 宣威市| 镇赉县| 涟水县| 邹平县| 九台市| 庆城县| 鄂托克前旗| 黄骅市| 辉县市| 绵阳市| 正宁县| 游戏| 陆川县| 贞丰县| 东台市| 磐石市| 五原县| 东海县| 德化县| 呼伦贝尔市| 鸡东县| 朝阳区| 云林县| 剑河县| 天柱县| 永丰县| 太白县| 信丰县| 遵义县| 芦溪县| 梧州市|