former_member182680
Active Participant
Member since ‎06-30-2010

User Statistics

  • 113 Posts
  • 3 Solutions
  • 0 Kudos given
  • 172 Kudos received

User Activity

I recently had the chance to have a look into SAP’s ABAP Test Double Framework. Previously, the main tool for mock object creation was mockA, which did a great job in my previous projects.Code readabilityThe Test Double Framework’s fake object creati...
The current release of mockA is available at Github. It contains an error fix that I would like to outline in today´s blog post.The bugMockA allows you to mock classes as described in one of my previous blog posts. Technically, mockA tries to create ...
IntroductionThis blog post is strongly connected to the presentation that has been given by Damir Majer and Martin Steinberg during SAP Inside Track 2014 in Munich.The presentation focuses on solving a code kata using Test-Driven Development (TDD).Th...
What has been missing so farIn one of my last blog posts, I showed you how mock objects can be easily created. I also showed you how mock object's method calls can be counted and how verifications can be implemented, to ensure that a mocked object's ...
With mockA it is quite easy to mock interfaces for unit tests. But it is also capable of creating mock objects that are not based only on interfaces, but specific classes. This blog post shows how it works and what needs to be considered.BasicsCreati...