In the part two article, learn about writing Interaction unit tests aka Void Methods. We assert by verifying whether a particular method has been called or not.
A ForkJoinTask is a thread-like entity which is much lighter than a normal thread and can be used to perform huge number of tasks and subtasks at a lower resource cost than a normal Thread implementation. The ForkJoinPool is a collection which hosts a number of such ForkJoinTasks and can take on such heavy lifting tasks.
Learn about how we can make use of Repository pattern in separating the domain functionality from the other functionalities in our ASP.NET Core application and the various advantages we can gain from it.