Explore >> Select a destination


You are here

lenholgate.com
| | www.chriswarbo.net
7.0 parsecs away

Travel
| | [AI summary] The post discusses the ambiguity and confusion caused by differing definitions of unit testing terminology like 'unit' and 'dependency' within software development.
| | adamstorr.co.uk
5.7 parsecs away

Travel
| | Tried to use the new TimeProvider in .NET with AutoFixture AutoMoq and had issues?
| | danielsieger.com
6.1 parsecs away

Travel
| | A concise introduction to unit testing.
| | sookocheff.com
31.8 parsecs away

Travel
| Inversion of Control (IoC), also known as Dependency Injection (DI), allows an object to define their dependencies as constructor arguments (strictly speaking, you can set these dependencies as properties, but the examples I will use today are constructor-based). This is the inverse of the object itself controlling the instantiation or location of its dependencies, hence the name Inversion of Control. Let's look at an example from Stackoverflow using a text editor with a spell checking component: