ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب Python Testing Cookbook

دانلود کتاب کتاب آشپزی تست پایتون

Python Testing Cookbook

مشخصات کتاب

Python Testing Cookbook

ویرایش:  
نویسندگان:   
سری:  
ISBN (شابک) : 9781849514668, 1849514674 
ناشر: Packt Publishing 
سال نشر: 2011 
تعداد صفحات: 0 
زبان: English 
فرمت فایل : EPUB (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 24 مگابایت 

قیمت کتاب (تومان) : 45,000



کلمات کلیدی مربوط به کتاب کتاب آشپزی تست پایتون: برنامه نویسی کامپیوتر، علوم کامپیوتر، مهندسی و علوم کاربردی، برنامه نویسی شی گرا (علوم کامپیوتر)، پایتون (زبان برنامه کامپیوتری)، کتاب الکترونیک، زبان های برنامه نویسی، کتاب های الکترونیک



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 12


در صورت تبدیل فایل کتاب Python Testing Cookbook به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب کتاب آشپزی تست پایتون نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی در مورد کتاب کتاب آشپزی تست پایتون

بیش از 70 دستور العمل ساده اما فوق العاده موثر برای کنترل تست خودکار با استفاده از ابزارهای تست قدرتمند پایتون.;کتاب آشپزی تست پایتون. کتاب آشپزی تست پایتون; وام؛ درباره نویسنده؛ درباره داوران؛ www.PacktPub.com; فایل های پشتیبانی، کتاب های الکترونیکی، پیشنهادات تخفیف و موارد دیگر؛ چرا اشتراک؟ دسترسی رایگان برای دارندگان حساب Packt. پیشگفتار؛ آنچه این کتاب پوشش می دهد؛ آنچه برای این کتاب نیاز دارید؛ این کتاب برای چه کسانی است؛ کنوانسیون ها بازخورد خواننده؛ پشتیبانی مشتری؛ دانلود کد نمونه؛ اشتباه دزدی دریایی؛ سوالات؛ 1. استفاده از Unittest برای توسعه تست های پایه. معرفی؛ اثبات اصول اولیه؛ آماده شدن؛ چگونه انجامش بدهیم ... ؛ چگونه کار می کند ... ; موارد بیشتری وجود دارد ...


توضیحاتی درمورد کتاب به خارجی

Over 70 simple but incredibly effective recipes for taking control of automated testing using powerful Python testing tools.;Python Testing Cookbook; Python Testing Cookbook; Credits; About the Author; About the Reviewers; www.PacktPub.com; Support files, eBooks, discount offers and more; Why Subscribe?; Free Access for Packt account holders; Preface; What this book covers; What you need for this book; Who this book is for; Conventions; Reader feedback; Customer support; Downloading the example code; Errata; Piracy; Questions; 1. Using Unittest To Develop Basic Tests; Introduction; Asserting the basics; Getting ready; How to do it ... ; How it works ... ; There's more ...



فهرست مطالب

Python Testing Cookbook
Python Testing Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Support files, eBooks, discount offers and more
Why Subscribe?
Free Access for Packt account holders
Preface
What this book covers
What you need for this book
Who this book is for
Conventions
Reader feedback
Customer support
Downloading the example code
Errata
Piracy
Questions
1. Using Unittest To Develop Basic Tests
Introduction
Asserting the basics
Getting ready
How to do it ...
How it works ...
There's more ... AssertEquals is preferred over assertTrue and assertFalseself.fail([msg]) can usually be rewritten with assertions
Our version of Python can impact our options
Setting up and tearing down a test harness
How to do it ...
How it works ...
Running test cases from the command line with increased verbosity
How to do it ...
How it works ...
There's more ...
Running a subset of test case methods
How to do it ...
How it works ...
Chaining together a suite of tests
How to do it ...
How it works ...
There's more ...
Name of the test case should be significant. Defining test suites inside the test moduleHow to do it ...
How it works ...
There's more ...
Test suite methods must be outside of the test class
Why have different suites?
optparse is being phased out and replaced by argparse
Retooling old test code to run inside unittest
How to do it ...
How it works ...
There's more ...
Where are the bugs?
FunctionTestCase is a temporary measure
Breaking down obscure tests into simple ones
How to do it ...
How it works ...
There's more ...
Where is the bug?
What is the right size for a test method?
Unittests versus integration tests. Testing the edgesHow to do it ...
How it works ...
There's more ...
Identifying the edges is important
Testing for unexpected conditions
Testing corner cases by iteration
How to do it ...
How it works ...
There's more ...
Does this defy the recipe-Breaking down obscure tests into simple ones?
How does this compare with the recipe-Testing the edges?
See also
2. Running Automated Test Suites with Nose
Introduction
Getting nosy with testing
How to do it ...
How it works ...
There's more ...
Nose is extensible
Nose is embeddable
See also
Embedding nose inside Python
How to do it ... How it works ... There's more
Writing a nose extension to pick tests based on regular expressions
Getting ready
How to do it ...
How it works ...
There's more ...
Writing a nose extension to generate a CSV report
Getting ready
How to do it ...
How it works ...
There's more ...
Writing a project-level script that lets you run different test suites
How to do it ...
How it works ...
There's more
Why use getopt instead of optparse?
3. Creating Testable Documentation with doctest
Introduction
Documenting the basics
How to do it ...
How it works ...
There's more ...
Catching stack traces.




نظرات کاربران