排序
Introduction to Unit Testing with Java
Introduction to Unit Testing with Java,_Cover image by [Hans-Peter Gauster](https://unsplash.com/@sloppyperfectionist) on [Unsplash](https://unsplash.com/)_ We all have been there:...
Pruebas funcionales con factory_boy y faker
Pruebas funcionales con factory_boy y faker, Pruebas funcionales con factory_boy. Una de las primeras cosas que aprendí cuando comencé a hacer pruebas funcionales (allá en los l...
Porting to pytest: a practical example
Porting to pytest: a practical example,Originally published on my blog. Introduction The other day I was following the django tutorial. If you never read the tutorial, or don't wan...
Time Machine for Java
Time Machine for Java,This article describes a tool developed to support unit-testing of time-dependent logic in Java applications. The tool helps control the quality of trading pl...
Testing legacy code, part 2: Bending the rules
Testing legacy code, part 2: Bending the rules,So, you decided to add some tests to your ugly looking code. You have prepared the test scenarios you would like to test. You are sta...
Testing legacy code, part 1: How to start
Testing legacy code, part 1: How to start,I am starting this miniseries which is a continuation of my previous article on why I think legacy codebase should be tested. I will be mo...
automation test engineers and OOP
automation test engineers and OOP,My fellow test engineers need to re-read OOP principles and understand their value and really start using them. E.g. they write - class Epic { Typ...
Could syntax check for your code be taken as distinct step?
Could syntax check for your code be taken as distinct step?,Based on https://stackoverflow.com/questions/47262474/could-syntax-check-for-your-code-be-taken-as-distinct-step Please ...
Assertions considered Harmful
Assertions considered Harmful,Assertions are the go-to checking mechanism in unit tests. However, when applied to testing interfaces, specifically GUIs, I consider them to be toxic...
Introduction to Python unittest
Introduction to Python unittest, python (5 Part Series) 1 Introduction to Python unittest 2 What does 'if __name__ == '__main__'' do in Python? 3 Running external programs with Pyt...
No Tests – No Pull Request, Right? Types of Tests that Should Be in Your Codebase
No Tests - No Pull Request, Right? Types of Tests that Should Be in Your Codebase,Originally published on my blog: All You Need Is Backend. As the blog post Pull Requests: The Good...
Property Testing: Why You Should Generate Test Data
Property Testing: Why You Should Generate Test Data,I drank the functional programming cool-aid at my first real job. While I do not currently professionally develop with functiona...