本站已收录 番号和无损神作磁力链接/BT种子 

[ DevCourseWeb.com ] Udemy - PHP Unit Testing with PHPUnit

种子简介

种子名称: [ DevCourseWeb.com ] Udemy - PHP Unit Testing with PHPUnit
文件类型: 视频
文件数目: 47个文件
文件大小: 490.66 MB
收录时间: 2022-1-23 02:56
已经下载: 3
资源热度: 160
最近下载: 2024-6-16 01:03

下载BT种子文件

下载Torrent文件(.torrent) 立即下载

磁力链接下载

magnet:?xt=urn:btih:04fc06db04f3dc98154dfff5e5d0edf96f3e12f1&dn=[ DevCourseWeb.com ] Udemy - PHP Unit Testing with PHPUnit 复制链接到迅雷、QQ旋风进行下载,或者使用百度云离线下载。

喜欢这个种子的人也喜欢

种子包含的文件

[ DevCourseWeb.com ] Udemy - PHP Unit Testing with PHPUnit.torrent
  • ~Get Your Files Here !/01 - Introduction and project setup/001 Introduction.mp48.25MB
  • ~Get Your Files Here !/01 - Introduction and project setup/002 Install PHP and Composer (Windows).mp416.95MB
  • ~Get Your Files Here !/01 - Introduction and project setup/003 Install PHP and Composer (macOS).mp416.32MB
  • ~Get Your Files Here !/01 - Introduction and project setup/004 Install PHP and Composer (Linux).mp45.77MB
  • ~Get Your Files Here !/01 - Introduction and project setup/005 Create a project folder and install PHPUnit.mp44.32MB
  • ~Get Your Files Here !/02 - Unit testing with PHPUnit_ the basics/001 Write and run your first test_ an introduction to assertions.mp411.94MB
  • ~Get Your Files Here !/02 - Unit testing with PHPUnit_ the basics/002 Test a function_ using multiple assertions.mp44.51MB
  • ~Get Your Files Here !/02 - Unit testing with PHPUnit_ the basics/003 Test that incorrect results are not returned_ using multiple test methods.mp45.46MB
  • ~Get Your Files Here !/02 - Unit testing with PHPUnit_ the basics/004 Test a class_ fixing bugs through testing.mp47.94MB
  • ~Get Your Files Here !/02 - Unit testing with PHPUnit_ the basics/005 How to name your test methods.mp46.24MB
  • ~Get Your Files Here !/03 - Configuring the PHPUnit test environment/001 The PHPUnit test runner_ specify different options when running tests.mp412.55MB
  • ~Get Your Files Here !/03 - Configuring the PHPUnit test environment/002 Configure PHPUnit_ the XML configuration file.mp46.75MB
  • ~Get Your Files Here !/03 - Configuring the PHPUnit test environment/003 Autoload classes being tested using Composer.mp46.87MB
  • ~Get Your Files Here !/04 - Test dependencies, fixtures and exceptions/001 Unit test a queue class.mp418.67MB
  • ~Get Your Files Here !/04 - Test dependencies, fixtures and exceptions/002 Test dependencies_ make one test method dependent on another.mp47.17MB
  • ~Get Your Files Here !/04 - Test dependencies, fixtures and exceptions/003 Fixtures_ set up the known state of the tests using setUp and tearDown.mp413.79MB
  • ~Get Your Files Here !/04 - Test dependencies, fixtures and exceptions/004 Easily add a new test method using the test fixture.mp44.95MB
  • ~Get Your Files Here !/04 - Test dependencies, fixtures and exceptions/005 Share fixtures between tests for resource-intensive data.mp410.02MB
  • ~Get Your Files Here !/04 - Test dependencies, fixtures and exceptions/006 Testing exceptions_ expecting code to throw an exception.mp412.13MB
  • ~Get Your Files Here !/05 - Test doubles_ mocks and stubs/001 Test doubles_ create mock objects to remove dependencies on external resources.mp411.66MB
  • ~Get Your Files Here !/05 - Test doubles_ mocks and stubs/002 Dependency injection_ inject objects that a class depends on.mp411.78MB
  • ~Get Your Files Here !/05 - Test doubles_ mocks and stubs/003 Test object interactions_ verify how a dependency is used.mp422.13MB
  • ~Get Your Files Here !/05 - Test doubles_ mocks and stubs/004 Customise the creation of the mock object_ the getMockBuilder method.mp419.33MB
  • ~Get Your Files Here !/06 - Mockery - an alternative mocking framework with a human-readable syntax/001 Mock a dependency that doesn't exist yet.mp48.02MB
  • ~Get Your Files Here !/06 - Mockery - an alternative mocking framework with a human-readable syntax/002 Using Mockery_ installation and integration with PHPUnit.mp415.21MB
  • ~Get Your Files Here !/06 - Mockery - an alternative mocking framework with a human-readable syntax/003 Using Mockery to mock a dependency that doesn't exist yet.mp423.78MB
  • ~Get Your Files Here !/06 - Mockery - an alternative mocking framework with a human-readable syntax/004 PHPUnit vs Mockery_ Returning different values on subsequent method calls.mp413.63MB
  • ~Get Your Files Here !/06 - Mockery - an alternative mocking framework with a human-readable syntax/005 Mockery Spies_ Make assertions on a call after the event.mp413.29MB
  • ~Get Your Files Here !/07 - Test-driven development/001 Test-driven development_ set up a TDD project.mp46.13MB
  • ~Get Your Files Here !/07 - Test-driven development/002 Write the test first, then write the code to make it pass.mp44.88MB
  • ~Get Your Files Here !/07 - Test-driven development/003 Write just enough code to make the test pass.mp45.82MB
  • ~Get Your Files Here !/07 - Test-driven development/004 Add tests and refactor code until the tests pass.mp46.8MB
  • ~Get Your Files Here !/07 - Test-driven development/005 Add more tests and application code functionality.mp47.8MB
  • ~Get Your Files Here !/07 - Test-driven development/006 Another test, more functionality, and more refactoring.mp46.28MB
  • ~Get Your Files Here !/07 - Test-driven development/007 Data providers_ provide a test method with a collection of data.mp413.85MB
  • ~Get Your Files Here !/08 - Testing non-public methods and properties and abstract classes/001 Testing non-public methods.mp45.86MB
  • ~Get Your Files Here !/08 - Testing non-public methods and properties and abstract classes/002 Testing protected methods using inheritance.mp414.57MB
  • ~Get Your Files Here !/08 - Testing non-public methods and properties and abstract classes/003 Testing private methods using reflection.mp413.17MB
  • ~Get Your Files Here !/08 - Testing non-public methods and properties and abstract classes/004 Testing private methods with arguments using reflection.mp46.22MB
  • ~Get Your Files Here !/08 - Testing non-public methods and properties and abstract classes/005 Testing protected and private attributes.mp43.55MB
  • ~Get Your Files Here !/08 - Testing non-public methods and properties and abstract classes/006 Testing abstract classes.mp414.01MB
  • ~Get Your Files Here !/09 - Testing static methods/001 Testing static methods.mp413.11MB
  • ~Get Your Files Here !/09 - Testing static methods/002 The problem with static methods_ dependencies and mocking.mp422.22MB
  • ~Get Your Files Here !/09 - Testing static methods/003 Option 1_ Refactor code to remove the static method.mp47.28MB
  • ~Get Your Files Here !/09 - Testing static methods/004 Option 2_ Pass the dependency as a callable.mp411.91MB
  • ~Get Your Files Here !/09 - Testing static methods/005 Option 3_ Use Mockery alias mocks to stub the static method call.mp45.81MB
  • ~Get Your Files Here !/10 - Conclusion/001 Conclusion.mp41.96MB