I’d like to test an abstract class. Sure, I can manually write a mock that inherits from the class. Can I do this using a mocking framework (I’m using...
  • May 23, 2022
  • 0 Comments
Why is it possible to write constructor for an abstract class in C#? As far as I know we can’t instantiate an abstract class.. so what is it for?...
  • May 23, 2022
  • 0 Comments
Because I am used to the old ways of duck typing in Python, I fail to understand the need for ABC (abstract base classes). The help is good on...
  • May 19, 2022
  • 0 Comments
I’m originally a Java programmer who now works with Objective-C. I’d like to create an abstract class, but that doesn’t appear to be possible in Objective-C. Is this possible?...
  • May 3, 2022
  • 0 Comments