I am trying to run a unit test on a method in an abstract class. I have condensed the code below:
Abstract Class:
public abstract class TestAb {
If you want to mock methods on an abstract class like this, then you need to make it either virtual, or abstract.