Tagged Questions

0
votes
2answers
203 views

Multi-level inheritence with fluent interface in C#

Given the sample console application below: QUESTION #1: Why does .Name() return typeof OranizationBuilder, but .Write() calls CorporationBuilder? QUESTION #2: How to get .Name() to return typeof …
3
votes
1answer
181 views

Is there a fluent assertion API for MSTest?

I've recently been exposed to the fluent interface in nUnit and I love it; however, I am using msTest. Does anyone know if there is a fluent interface that is either testing framework agnostic or …