欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

python中使用 unittest.TestCase單元測試的用例詳解

 更新時間:2021年08月30日 11:08:02   作者:不會編程的兵  
python 在unittest.TestCase 中提高了很多斷言方法,這篇文章主要介紹了python中使用 unittest.TestCase 進(jìn)行單元測試的操作方法,需要的朋友可以參考下

單元測試和測試用例

python標(biāo)準(zhǔn)庫中的模塊unittest提供了代碼測試工具。單元測試用于核實函數(shù)的莫個方面沒有問題;測試用例是一組單元測試,這些單元測試一起核實函數(shù)在各種情形下的行為都符合要求。良好的測試用例考慮到了函數(shù)可能收到的各種輸入,包含針對所有這些情形的測試。全覆蓋測試用例包含一整套單元測試,涵蓋了各種可能的函數(shù)使用方式。對于大型項目,要實現(xiàn)全覆蓋可能很難,通常,最初只要針對代碼的重要行為編寫測試即可,等項目被廣泛使用時再考慮全覆蓋。

各種斷言方法

python 在unittest.TestCase 中提高了很多斷言方法。

unittest Module中的斷言方法

方法 用途
assertEqual(a,b) 核實a == b
assertNotEqual(a,b) 核實a != b
assertTrue(x) 核實x為True
assertFalse(x) 核實x為False
assertIn(item,list) 核實ietm在list中
assertNotIn(item,list) 核實item不在list中

函數(shù)測試

 1.準(zhǔn)備測試函數(shù)

name_function.py

def get_formatted_name(first, last):
    '''生成整潔的姓名'''
    full_name = first + ' ' + last
    return full_name.title()

2.編寫一個能使用它的程序

nams.py

from name_function import get_formatted_name

print("Enter 'q' at any time to quit.")
while True:
    first = input("\nPlease give me a first name: ")
    if first == 'q':
        break
    last = input("Please give me a last name: ")
    if last == 'q':
        break
    formatted_name = get_formatted_name(first, last)
    print("\tNeatly formatted name: " + formatted_name + '.')

3.對函數(shù)進(jìn)行單元測試

test_name_function.py

import unittest
from unittest import TestCase

from name_function import get_formatted_name


class NamesTestCase(TestCase):
    '''測試name_function.py'''

    def test_first_last_name(self):
        '''能夠正確地處理象 Janis Joplin這樣的姓名嗎?'''
        formtted_name = get_formatted_name('janis', 'joplin')
        self.assertEqual(formtted_name, 'Janis Joplin')


# 執(zhí)行
unittest.main()
python test_name_function.py

在這里插入圖片描述

第一行的句點 表示測試通過了,接下來的一行指出python運行了一個測試,消耗的時間不到0.001秒,最后的OK表示改測試用例中的所有測試單元都通過了。

類測試

1.準(zhǔn)備測試的類

survey.py

class AnonmousSurvey():
    """收集匿名調(diào)查問卷的答案"""

    def __init__(self, question):
        """存儲一個問題,并為存儲答案做準(zhǔn)備"""
        self.question = question
        self.responses = []

    def show_question(self):
        """顯示調(diào)查問卷"""
        print(self.question)

    def store_response(self, new_response):
        """存儲單份調(diào)查答卷"""
        self.responses.append(new_response)

    def show_results(self):
        """顯示收集到的所有答卷"""
        print("Survey results")
        for response in self.responses:
            print('- ' + response)

2.編寫一個能使用它的程序

language_survey.py

from survey import AnonmousSurvey

# 定義一個問題,并創(chuàng)建一個表示調(diào)查的AnonymousSurvey對象
question = "What language did you first learn to speak?"
my_survey = AnonmousSurvey(question)

# 顯示問題并存儲答案
my_survey.show_question()
print("Enter 'q' at any time to quit.\n")
while True:
    response = input("Language: ")
    if response == 'q':
        break
    my_survey.store_response(response)

# 顯示調(diào)查結(jié)果
print("\nThank you to everyoune who participated in the survey!")
my_survey.show_results()

3.對類進(jìn)行單元測試

import unittest

from survey import AnonmousSurvey


class TestAnonmousSurvey(unittest.TestCase):
    """針對AnonymousSurvey類的測試"""

    def test_store_single_response(self):
        """測試單個答案會被妥善地存儲"""
        question = "What language did you first learn to speak?"
        my_survey = AnonmousSurvey(question)
        my_survey.store_response('English')

        self.assertIn('English', my_survey.responses)

    def test_store_three_responses(self):
        """測試多個答案是否會被存儲"""
        question = "What language did you first learn to speak?"
        my_survey = AnonmousSurvey(question)
        responses = ["English", "Chinses", "Japan"]
        for response in responses:
            my_survey.store_response(response)

        for response in responses:
            self.assertIn(response, my_survey.responses)


unittest.main()

在這里插入圖片描述

可以看到對類的單元測試也是成功的。雖然成功了,但是做法不是很好,測試有些重復(fù)了,下面使用unittest的另一項功能來提高它們的效率

方法 setUP()

如果你在TestCase類中包含方法setUP(),python將先運行它,在運行各個以test_開頭的方法。

test_survey_setup.py

import unittest

from survey import AnonmousSurvey


class TestAnonmousSurvey(unittest.TestCase):
    """針對AnonymousSurvey類的測試"""

    def setUp(self):
        """創(chuàng)建一個調(diào)查對象和一組答案,供使用的測試方法使用"""
        question = "What language did you first learn to speak?"
        self.my_survey = AnonmousSurvey(question)
        self.responses = ["English", "Chinses", "Japan"]

    def test_store_single_response(self):
        """測試單個答案會被妥善地存儲"""
        self.my_survey.store_response(self.responses[0])
        self.assertIn(self.responses[0], self.my_survey.responses)

    def test_store_three_responses(self):
        """測試多個答案是否會被存儲"""
        for response in self.responses:
            self.my_survey.store_response(response)

        for response in self.responses:
            self.assertIn(response, self.my_survey.responses)


unittest.main()

測試自己編寫的類時,方法setUP()讓測試方法編寫起來更容易:可以在setUP()方法中創(chuàng)建一系列實例并設(shè)置它們的屬性,再在測試方法中直接使用這些實例。相比于在每個測試方法中都創(chuàng)建實例并設(shè)置屬性,這要容易的多。

注意

運行測試用例時,每完成一個單元測試,python都打印一個字符: 測試通過時打印一個句點; 測試引發(fā)錯誤時打印一個E; 測試導(dǎo)致斷言失敗時打印一個F。這就是運行測試用例時,在輸出的第一行中看到的句點和字符數(shù)量各不相同的原因。如果測試用例包含很多單元測試,需要運行很長時間,就可以通過觀察這些結(jié)果來獲悉有多少個測試通過了。

到此這篇關(guān)于python中使用 unittest.TestCase 進(jìn)行單元測試的文章就介紹到這了,更多相關(guān)python單元測試內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • 用Python畫圣誕樹代碼示例

    用Python畫圣誕樹代碼示例

    大家好,本篇文章主要講的是用Python畫圣誕樹代碼示例,感興趣的同學(xué)趕快來看一看吧,對你有幫助的話記得收藏一下,方便下次瀏覽
    2021-12-12
  • 一篇文章搞定Python操作文件與目錄

    一篇文章搞定Python操作文件與目錄

    這篇文章主要給大家介紹了關(guān)于如何通過一篇文章搞定Python操作文件與目錄的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對大家學(xué)習(xí)或者使用Python具有一定的參考學(xué)習(xí)價值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2019-08-08
  • Python函數(shù)調(diào)用的幾種方式(類里面,類之間,類外面)

    Python函數(shù)調(diào)用的幾種方式(類里面,類之間,類外面)

    本文主要介紹了Python函數(shù)調(diào)用的幾種方式(類里面,類之間,類外面),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2023-07-07
  • 解決jupyter 在瀏覽器中 代碼不執(zhí)行的問題

    解決jupyter 在瀏覽器中 代碼不執(zhí)行的問題

    這篇文章主要介紹了解決jupyter 在瀏覽器中 代碼不執(zhí)行的問題,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2021-03-03
  • python使用pika庫調(diào)用rabbitmq交換機(jī)模式詳解

    python使用pika庫調(diào)用rabbitmq交換機(jī)模式詳解

    這篇文章主要介紹了python使用pika庫調(diào)用rabbitmq交換機(jī)模式詳解,文章圍繞主題展開詳細(xì)的內(nèi)容介紹,具有一定的參考價值,感興趣的小伙伴可以參考一下
    2022-08-08
  • python使用htmllib分析網(wǎng)頁內(nèi)容的方法

    python使用htmllib分析網(wǎng)頁內(nèi)容的方法

    這篇文章主要介紹了python使用htmllib分析網(wǎng)頁內(nèi)容的方法,涉及Python使用htmllib模塊的相關(guān)技巧,需要的朋友可以參考下
    2015-05-05
  • Python 網(wǎng)絡(luò)編程起步(Socket發(fā)送消息)

    Python 網(wǎng)絡(luò)編程起步(Socket發(fā)送消息)

    現(xiàn)在開始學(xué)習(xí)網(wǎng)絡(luò)編程,先從簡單的UDP協(xié)議發(fā)送消息開始。我們需要有接受消息的服務(wù)端程序(Server.py)和發(fā)送消息的客戶端程序(Client)。
    2008-09-09
  • python 中random模塊的常用方法總結(jié)

    python 中random模塊的常用方法總結(jié)

    這篇文章主要介紹了python 中random的常用方法總結(jié)的相關(guān)資料,需要的朋友可以參考下
    2017-07-07
  • Python3遍歷目錄樹實現(xiàn)方法

    Python3遍歷目錄樹實現(xiàn)方法

    這篇文章主要介紹了Python3遍歷目錄樹實現(xiàn)方法,涉及Python目錄樹的遍歷操作技巧,需要的朋友可以參考下
    2015-05-05
  • python如何往列表頭部和尾部添加元素

    python如何往列表頭部和尾部添加元素

    這篇文章主要介紹了python如何往列表頭部和尾部添加元素,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教
    2022-05-05

最新評論