I have the following situation:
class A
{
}
class B : A
{
}
I want to assert that variables of typeof(B) are assignable to typeof(A) variables. How to do that with fluent assertions?
I think you can use BeAssignableTo<T> for this:
var b = new B();
b.Should().BeAssignableTo<A>();
This is almost your own sentence you have written. :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With