本文介紹 django.test.SimpleTestCase.client_class
的用法。
聲明
SimpleTestCase.client_class
如果要使用不同的 Client
類(例如,具有自定義行為的子類),請使用
類屬性:client_class
from django.test import Client, TestCase
class MyTestClient(Client):
# Specialized methods for your environment
...
class MyTest(TestCase):
client_class = MyTestClient
def test_my_stuff(self):
# Here self.client is an instance of MyTestClient...
call_some_test_code()
相關用法
- Python Django SimpleTestCase.client用法及代碼示例
- Python Django SimpleTestCase.assertTemplateUsed用法及代碼示例
- Python Django SimpleTestCase.assertRaisesMessage用法及代碼示例
- Python Django SimpleTestCase.assertHTMLEqual用法及代碼示例
- Python Django SimpleTestCase.assertFieldOutput用法及代碼示例
- Python Django SimpleArrayField.base_field用法及代碼示例
- Python Django SimpleArrayField.delimiter用法及代碼示例
- Python Django Signal用法及代碼示例
- Python Django Sign用法及代碼示例
- Python Django Sin用法及代碼示例
- Python Tableau SiteItem用法及代碼示例
- Python Scipy integrate.quadrature()用法及代碼示例
- Python Scipy stats.hypsecant.moment()用法及代碼示例
- Python String Center()用法及代碼示例
- Python Scipy stats.hypsecant.median()用法及代碼示例
- Python Sympy Ellipse.equation()用法及代碼示例
- Python String decode()用法及代碼示例
- Python String轉Binary用法及代碼示例
- Python String count()用法及代碼示例
- Python Scipy stats.halfgennorm.fit()用法及代碼示例
- Python Tableau Server用法及代碼示例
- Python Sympy encloses_point()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python Scipy stats.halfgennorm.stats()用法及代碼示例
注:本文由純淨天空篩選整理自djangoproject.com大神的英文原創作品 django.test.SimpleTestCase.client_class。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。