Easiest Way to Run Subset of Tests From a Test Project
Recently, I was doing some analysis on some tests to perform some optimizations. While performing some analysis, I wanted to run only subset of tests. And while doing this activity,…
Recently, I was doing some analysis on some tests to perform some optimizations. While performing some analysis, I wanted to run only subset of tests. And while doing this activity,…
This is the first article from Azure App Configuration Service series. In this series of articles, we are going to discuss key features of this service, which will enable a…
In previous articles, we have talked about Gitflow workflow, GitHub flow and GitLab flow. In this last article of the series, we are going to discuss about Trunk Based Development.…
In previous article, I have provided brief overview of Gitflow workflow. We have seen that one of the major disadvantages of Gitflow workflow is its complexity. In this article, we…
Now a days, GIT repositories have been very common and most of the developers are aware of what branching strategy is being used by their current projects. We all know…
Business rules can be complicated and hence it becomes immensely important to automate the testing of those rules. The library, Fluent Validation, provides APIs to support the automated testing of…
In previous article, we have seen how RuleSets can be used to trigger different validations in different contexts. In this article, we are going to discuss about another pattern which…
I have been writing only about fluent validation in past few articles. There will be 2-3 articles more about fluent validation. Below is the list of all previous articles in…
In previous article, we have seen how the conditional validation logic can be added using fluent validation library. Real world applications may also need to connect to database for performing…
Many times, in real world applications, the input validation is not straight forward. Sometimes the validation rules may change depending on certain conditions. In this article, we are going to…
Many times the object has a property which allows various implementations of the same interface. Or sometimes, the collection of a given interface may have objects of different types which…
Here in this article we are going to discuss about cascade modes supported by fluent validation. There are two modes - rule level cascade mode and class level cascade mode.…