From 16e398a3f773dd24c03d35aecc5de8989d54ab53 Mon Sep 17 00:00:00 2001 From: Jungpyo Hong Date: Tue, 17 Aug 2021 08:47:30 -0500 Subject: [PATCH] update test double --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f3b55b0..fd53cf6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Awesome iOS Developer [![Join the chat at https://gitter.im/awesome-ios-developer/community](https://badges.gitter.im/awesome-ios-developer/community.svg)](https://gitter.im/awesome-ios-developer/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +ㅇ## Awesome iOS Developer [![Join the chat at https://gitter.im/awesome-ios-developer/community](https://badges.gitter.im/awesome-ios-developer/community.svg)](https://gitter.im/awesome-ios-developer/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

@@ -1575,19 +1575,19 @@ And then go to **RUN** and check **THREAD SANITIZER** 👈 ``` - - Fake - + - Fake - Objects actually have working implementations, but usually take some shortcut which makes them not suitable for production. ```swift // exaple code will update ``` - - Spies + - Spies - Spies are stubs that also record some information based on how they were called. One form of this might be an email service that records how many messages it was sent. ```swift // exaple code will update ``` - - Stubs + - Stubs - Stubs provide canned answers to calls made during the test, usually not responding at all to anything outside what's programmed in for the test. ```swift // exaple code will update