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 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. :)
© 2022 - 2024 — McMap. All rights reserved.