by Enrico Bencivenga | Aug 31, 2021 | Blog
In the last article about Actor Model, we have shown how to implement this pattern by using Akka Actors. Today we will see how to use Coyote, a framework implementing the Actor Model pattern but mainly used for testing. Deterministic programs are easy to test because...
by Antonio Tammaro | Jan 13, 2021 | Blog
We are carrying out update activities on some products for one of our clients, gradually migrating to microservice architectures. One of these products has followed the policy of “do not touch what works” for a long time, and as a result, it becomes...
by Adolfo Arnold | Dec 23, 2020 | Blog
The first time I opened a test file, which we usually find after creating a new project using Angular CLI, I felt a bit lost. As I was much more familiar with test frameworks such as XUnit or NUnit, I tried to match the parts of a test file in NUnit and those present...
by Antonio Liccardi | Oct 28, 2020 | Blog
In the last few months, we have helped some clients to migrate from the on-premise infrastructure to Microsoft Azure. Many of them asked us what the maximum user load that the configuration can support is. Answering this question is not easy, mostly because it could...
by Antonio Tammaro | Jul 29, 2020 | Blog
In my previous article, we have seen how testing and refactorizing legacy code with Golden Master Pattern. Now, we will continue to talk about testing, introducing a new paradigm with a simple example. We are familiar with writing tests based on examples. In...