Mocking a network connection in your Swift Tests
Published on: December 12, 2024Unit tests should be as free of external dependencies as possible. This means that you want to have full control over everything that happens in your tests. For example, if you’re working with a database, you want the database to be empty or in some predefined state before your test starts. You operate on the […]
Read post