St-Mehnert
Explorer
Member since ‎10-29-2010

User Statistics

  • 6 Posts
  • 0 Solutions
  • 5 Kudos given
  • 11 Kudos received

User Activity

A day in Life of a Software Developer09:00: Check E-Mails, answer some of them, flag some as unread or important.09:30: Start Working on Project A09:45: E-Mail from Colleague,  interrupt Work immediately interrupt working to read it & answer it.09:55...
The "new" Editor has a few nice features that make it a bit less painful to use. I use them to prevent unnecessary typing of repetitively used Code-Blocks and to generate local Classes (Test, Exception and so on).You can find a Collection of my Templ...
In Eric J. Evans book "Domain-Driven Design" I read about the Specification Pattern. In this Article I describe how and in which cases it could be used in ABAP.An ExampleLet's have a Look at a pseudo-Code: lo_spec_can_be_used_for_production =     lo_...
IntroductionThe Goals of Test Automation at XUnitPatterns.com include Keywords like "robust", "repeatable" "fully automated" and so on. In ABAP you can simply use Database Access using the OpenSQL Statements, wich maybe scattered all over your Code. ...
Why & when to use a Builder ClassA Test Method is divided in the 4 Parts: Setup, Exercise, Verify and Teardown (Meszaros).Often you see that a huge and complicated part is the Setup, where you replace Dependencies with Test-Doubles to test a Class in...