We're sorry but this page doesn't work properly without JavaScript enabled. Please enable it to continue.
Feedback

Taming Nondeterminism with Dependency Injection

Formale Metadaten

Titel
Taming Nondeterminism with Dependency Injection
Untertitel
Take back control of your code!
Serientitel
Anzahl der Teile
115
Autor
Lizenz
CC-Namensnennung - keine kommerzielle Nutzung - Weitergabe unter gleichen Bedingungen 4.0 International:
Sie dürfen das Werk bzw. den Inhalt zu jedem legalen und nicht-kommerziellen Zweck nutzen, verändern und in unveränderter oder veränderter Form vervielfältigen, verbreiten und öffentlich zugänglich machen, sofern Sie den Namen des Autors/Rechteinhabers in der von ihm festgelegten Weise nennen und das Werk bzw. diesen Inhalt auch in veränderter Form nur unter den Bedingungen dieser Lizenz weitergeben.
Identifikatoren
Herausgeber
Erscheinungsjahr
Sprache

Inhaltliche Metadaten

Fachgebiet
Genre
Abstract
There are many sources of nondeterminism in code such as randomness, IO, environment variables, databases and many more. Nondeterminism is a source of confusion, and it makes testing difficult. One way to control nondeterminism is using the dependency injection pattern. In this talk I'll guide you through a series of problems that demonstrate how nondeterminism can pose incredible challenges even in simple code. Tackling one problem after another, we'll gradually integrate dependency injection into the code to address these challenges! After attending this talk you will hopefully understand: - The challenges nondeterminism poses - How to identify nondeterminism in code - What dependency injection is, and how it addresses challenge related to nondeterminism - How to implement and integrate dependency injection into Python code