Getting Started with Unit Testing in Swift
A step-by-step guide to starting unit testing in Swift, covering project setup, frameworks, imports, and access control.
A step-by-step guide to starting unit testing in Swift, covering project setup, frameworks, imports, and access control.
Swift unit testing tutorial on verifying method calls using Test Driven Development (TDD) with iOS examples.
Swift unit testing screencast on using Test Driven Development to verify method calls in iOS apps.
A curated list of resources for unit testing Swift iOS apps, including courses, blogs, and talks.
A curated list of resources for unit testing Swift iOS apps, including courses, blogs, and talks.
Discusses the importance of unit testing in Swift to avoid writing legacy code, inspired by Michael Feathers' definition of legacy code as code without tests.
Article argues that Swift code without tests becomes legacy code, emphasizing the importance of unit testing for code quality.
A method to automate unit testing for null argument validation, reducing repetitive test code for methods with multiple parameters.
Explains how commercial mocking tools like Typemock and JustMock mock sealed classes and static methods using the .NET Profiling API.
A guide to unit and functional testing of Ruby applications that interact with git, using RSpec to verify commands and their execution.
Explores Swift access control issues in unit testing, offering solutions to resolve broken tests due to internal access levels.
Explains how Swift access control affects unit testing and offers solutions for resolving build errors.
Guide to creating mocks and stubs in Swift unit tests without a mocking framework, using nested classes and dependency injection.
A tutorial on creating mocks and stubs in Swift for unit testing, using nested classes and dependency injection.
Explains techniques for writing deterministic PHPUnit tests by removing dependencies on random functions like mt_rand() and date().
A tutorial on creating a generic helper class for database unit testing in Play Framework 2 Java applications using JPA and fixtures.
A guide to unit testing in Python, covering its benefits, components, and a practical walkthrough using the py.test framework.
A guide to unit testing in Python, covering its benefits, components, and a practical walkthrough using the py.test framework.
How to configure the Play Framework 2.x WS API to accept self-signed SSL certificates for web service calls, including a workaround and warnings.
A guide to testing ASP.NET Web API filters and handlers that use IDependencyScope, with a focus on dependency injection and unit testing patterns.