Builder Pattern
Builder is a creational design pattern that lets you construct objects step by step. Builder design pattern separates the construction of a complex object from its representation so that the same construction process can create different representati...
thkarropoulos.hashnode.dev4 min read
Omelian
Interesting article. Also, I believe that Builder is a nice pattern to use when you trying to initialize the objects for your tests. It gives you a great possibility to create all mutations of the object and it serves as a single place for your arrange test part. Thanks for sharing!