Skip to content

Commit

Permalink
Remove ending paragraphs
Browse files Browse the repository at this point in the history
  • Loading branch information
PinYuanChen committed Nov 28, 2023
1 parent 8ec3b56 commit bf08c49
Show file tree
Hide file tree
Showing 7 changed files with 1 addition and 14 deletions.
4 changes: 1 addition & 3 deletions _posts/2022-12-27-rxswift-debounce-throttle.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,4 @@ The case of using throttle is in any situation you want to trigger it when the f
})
.disposed(by: disposeBag)
```
Remember, if you don't set the `latest` to `false`, you will receive both the first and the last items.

That’s it. If you have any questions or recommendations, please leave a comment below. See you at the top!
Remember, if you don't set the `latest` to `false`, you will receive both the first and the last items.
2 changes: 0 additions & 2 deletions _posts/2022-12-30-combine-data-task.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,5 +161,3 @@ subscription = NetworkManager
// the same
})
```

That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! 👊
2 changes: 0 additions & 2 deletions _posts/2023-01-02-rxswift-combinelatest-withlatest.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,3 @@ D
```

![marble-merge](/assets/posts-images/marble-merge.png)

That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! 😎
2 changes: 0 additions & 2 deletions _posts/2023-01-05-delayed-deallocation.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,5 +99,3 @@ func delayedAllocAsyncCall() {
task.resume()
}
```

That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! 🤜🤛
2 changes: 0 additions & 2 deletions _posts/2023-02-07-xctestcase-sut.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,5 +83,3 @@ func test_empty_password {
```

In this way, we easily resolve the configuration issue. By creating the SUT within each test case, as it lives in the test case scope, also improves readability. But it doesn't mean the `setUpWithError` function is useless. In some cases, when global state needs to be set up and torn down, such as a singleton or database, using the `setUpWithError` and `tearDownWithError` may be a suitable choice.

That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! 😷
1 change: 0 additions & 1 deletion _posts/2023-10-08-core-data-cloud-kit-issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ Dmitry Deplov handled [this issue](https://medium.com/@dmitrydeplov/coredata-clo

After all these efforts, it sets me thinking that when implementing a new feature, even if it's provided by Apple, don't assume seamless integration. Despite official documentation, there are often many missing pieces, leaving developers to craft their own solutions.

That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! 🪣

Original file line number Diff line number Diff line change
Expand Up @@ -368,5 +368,3 @@ func test_getFromURL_failsOnRequestError() {
}
```
This refactoring empowers us to test a diverse range of response scenarios. We can exhaustively test various combinations of data, response, and error, making our tests more robust. For a comprehensive list of test cases and the complete `URLProtocolStub` code, feel free to check out my GitHub [gist](https://gist.github.com/PinYuanChen/d4bb4c70b4973f3eeea8abb103356260).

That's it! If you have any questions or recommendations, please leave a comment down below. See you at the top! 🧪

0 comments on commit bf08c49

Please sign in to comment.