Test Driven Laravel
视频
|
2017-6-25 14:13
|
2024-12-31 05:02
|
165
|
3.39 GB
|
84
|
- 01 Getting the Ball Rolling/01.1 - What Do We Build First.mp441.89MB
- 01 Getting the Ball Rolling/01.2 - Sketching out Our First Test.mp441.47MB
- 01 Getting the Ball Rolling/01.3 - Getting to Green.mp4127.52MB
- 01 Getting the Ball Rolling/01.4 - Unit Testing Presentation Logic.mp462.11MB
- 01 Getting the Ball Rolling/01.5 - Refactoring for Speed.mp441.57MB
- 01 Getting the Ball Rolling/01.6 - Hiding Unpublished Concerts.mp453.42MB
- 01 Getting the Ball Rolling/01.7 - Testing Query Scopes.mp439.2MB
- 01 Getting the Ball Rolling/01.8 - Factory States.mp425.59MB
- 02 Purchasing Concert Tickets/02.1 - Intro.mp46.29MB
- 02 Purchasing Concert Tickets/02.2 - Browser Testing vs Endpoint Testing.mp440.23MB
- 02 Purchasing Concert Tickets/02.3 - Outlining the First Purchasing Test.mp428.86MB
- 02 Purchasing Concert Tickets/02.4 - Faking the Payment Gateway.mp479.86MB
- 02 Purchasing Concert Tickets/02.5 - Adding Tickets to Orders.mp443.58MB
- 02 Purchasing Concert Tickets/02.6 - Encapsulating Relationship Logic in the Model.mp430.27MB
- 02 Purchasing Concert Tickets/02.7 - Getting Started with Validation Testing.mp453.76MB
- 02 Purchasing Concert Tickets/02.8 - Reducing Duplication with Custom Assertions.mp440.38MB
- 02 Purchasing Concert Tickets/02.9 - Handling Failed Charges.mp444.14MB
- 02 Purchasing Concert Tickets/02.91 - Preventing Ticket Sales to Unpublished Concerts.mp447.43MB
- 03 Limiting Ticket Sales/03.1 - Outlining the First Test Case.mp419.72MB
- 03 Limiting Ticket Sales/03.2 - Adding Tickets to Concerts.mp450.31MB
- 03 Limiting Ticket Sales/03.3 - Refusing Orders When There Are No More Tickets.mp454.07MB
- 03 Limiting Ticket Sales/03.4 - Finishing the Feature Test.mp428.07MB
- 03 Limiting Ticket Sales/03.5 - Cancelling Failed Orders.mp433.3MB
- 03 Limiting Ticket Sales/03.6 - Refactoring and Redundant Test Coverage.mp438.96MB
- 04 Returning Order Details/04.1 - Asserting Against JSON Responses.mp442.38MB
- 04 Returning Order Details/04.2 - Returning Order Details.mp434.82MB
- 04 Returning Order Details/04.3 - This Design Sucks.mp422.04MB
- 05 A Surgical Refactoring/05.1 - Persisting the Order Amount.mp428.08MB
- 05 A Surgical Refactoring/05.2 - Removing the Need to Cancel Orders.mp439.08MB
- 05 A Surgical Refactoring/05.3 - Preparing for Extraction.mp444.35MB
- 05 A Surgical Refactoring/05.4 - Extracting a Named Constructor.mp426.32MB
- 05 A Surgical Refactoring/05.5 - Precomputing the Order Amount.mp431.24MB
- 05 A Surgical Refactoring/05.6 - Uncovering a New Domain Object.mp428.63MB
- 05 A Surgical Refactoring/05.7 - You Might Not Need a Mocking Framework.mp420.58MB
- 06 Off to the Races/06.1 - Uh Oh, a Race Condition!.mp48.88MB
- 06 Off to the Races/06.2 - Requestception.mp423.12MB
- 06 Off to the Races/06.3 - Hooking into Charges.mp432.22MB
- 06 Off to the Races/06.4 - Uh Oh, a Segfault!.mp423.12MB
- 06 Off to the Races/06.5 - Replicating the Failure at the Unit Level.mp431.3MB
- 06 Off to the Races/06.6 - Reserving Individual Tickets.mp441.24MB
- 06 Off to the Races/06.7 - Reserved Means Reserved!.mp424.69MB
- 06 Off to the Races/06.8 - That Guy Stole My Tickets!.mp436.49MB
- 07 Hunting for Stale Code/07.1 - Cancelling Reservations.mp431.35MB
- 07 Hunting for Stale Code/07.2 - Refactoring Mocks to Spies.mp434.05MB
- 07 Hunting for Stale Code/07.3 - A Change in Behavior.mp430.29MB
- 07 Hunting for Stale Code/07.4 - Deleting Stale Tests.mp427.88MB
- 08 Something Smells in Our Controller/08.1 - Cleaning up a Loose Variable.mp437.07MB
- 08 Something Smells in Our Controller/08.2 - Moving the Email to the Reservation.mp440.91MB
- 08 Something Smells in Our Controller/08.3 - Refactoring -Long Parameter List- Using -Preserve Whole Object-.mp452.36MB
- 08 Something Smells in Our Controller/08.4 - Green with Feature Envy.mp435.46MB
- 08 Something Smells in Our Controller/08.5 - Avoiding Service Classes with Method Injection.mp446.73MB
- 09 Testing-Driving the Real Stripe Adapter/09.1 - Generating a Valid Payment Token.mp456.41MB
- 09 Testing-Driving the Real Stripe Adapter/09.2 - Retrieving the Last Charge.mp424.06MB
- 09 Testing-Driving the Real Stripe Adapter/09.3 - Making a Successful Charge.mp427.26MB
- 09 Testing-Driving the Real Stripe Adapter/09.4 - Dealing with Lingering State.mp480.39MB
- 09 Testing-Driving the Real Stripe Adapter/09.5 - Using Groups to Skip Integration Tests.mp412.38MB
- 09 Testing-Driving the Real Stripe Adapter/09.6 - Handling Invalid Payment Tokens.mp422.2MB
- 09 Testing-Driving the Real Stripe Adapter/09.7 - The Moment of Truth.mp424.5MB
- 10 Keeping Things Synchronized with Contract Tests/10.1 - When Interfaces Aren't Enough.mp425.63MB
- 10 Keeping Things Synchronized with Contract Tests/10.2 - Refactoring Towards Duplication.mp478.73MB
- 10 Keeping Things Synchronized with Contract Tests/10.3 - Capturing Charges with Callbacks.mp450MB
- 10 Keeping Things Synchronized with Contract Tests/10.4 - Making the Tests Identical.mp444.65MB
- 10 Keeping Things Synchronized with Contract Tests/10.5 - Extracting a Contract Test.mp449.31MB
- 10 Keeping Things Synchronized with Contract Tests/10.6 - Extracting the Failure Case.mp448.79MB
- 11 Upgrading Our Suite to Laravel 5.4/11.1 - Upgrading to Laravel 5.4.mp428.96MB
- 11 Upgrading Our Suite to Laravel 5.4/11.2 - Removing the BrowserKit Dependency.mp474.64MB
- 12 Viewing Order Сonfirmations/12.1 - Sketching Out Order Confirmations.mp439.63MB
- 12 Viewing Order Сonfirmations/12.2 - Driving out the Endpoint.mp432.08MB
- 12 Viewing Order Сonfirmations/12.3 - Asserting Against View Data.mp431.81MB
- 12 Viewing Order Сonfirmations/12.4 - Extracting a Finder Method.mp439.39MB
- 12 Viewing Order Сonfirmations/12.5 - Making Static Data Real.mp467.35MB
- 12 Viewing Order Сonfirmations/12.6 - Deciding What to Test in a View.mp435.47MB
- 12 Viewing Order Сonfirmations/12.7 - Decoupling Data from Presentation.mp430.59MB
- 13 Generating Confirmation Numbers/13.1 - Fixing the Test Suite.mp448.24MB
- 13 Generating Confirmation Numbers/13.2 - Stubbing the Interface.mp442.34MB
- 13 Generating Confirmation Numbers/13.3 - Updating Our Unit Tests.mp432.97MB
- 13 Generating Confirmation Numbers/13.4 - Confirmation Number Characteristics.mp421.64MB
- 13 Generating Confirmation Numbers/13.5 - Testing the Confirmation Number Format.mp442.77MB
- 13 Generating Confirmation Numbers/13.6 - Ensuring Uniqueness.mp452.22MB
- 13 Generating Confirmation Numbers/13.7 - Refactoring to a Facade.mp436.12MB
- 14 Storing the Last Four Card Digits/14.1 - Promoting Charges to Objects.mp4112.82MB
- 14 Storing the Last Four Card Digits/14.2 - Leveraging Our Contract Tests.mp481.58MB
- 14 Storing the Last Four Card Digits/14.3 - Storing Charge Details with Orders.mp454.38MB
- 14 Storing the Last Four Card Digits/14.4 - Deleting More Stale Code.mp475.25MB
不会用的朋友看这里
把磁力链接复制到离线下载,或者bt下载软件里即可下载文件,或者直接复制迅雷链接到迅雷里下载!
亲,你造吗?将网页分享给您的基友,下载的人越多速度越快哦!
违规内容投诉邮箱:[email protected]
概述
838888磁力搜索是一个磁力链接搜索引擎,是学术研究的副产品,用于解决资源过度分散的问题
它通过BitTorrent协议加入DHT网络,实时的自动采集数据,仅存储文件的标题、大小、文件列表、文件标识符(磁力链接)等基础信息
838888磁力搜索不下载任何真实资源,无法判断资源的合法性及真实性,使用838888磁力搜索服务的用户需自行鉴别内容的真伪
838888磁力搜索不上传任何资源,不提供Tracker服务,不提供种子文件的下载,这意味着838888磁力搜索 838888磁力搜索是一个完全合法的系统