Tag: Test

  • Testing Private Methods in Static Classes: The Not-So-Easy Way

    I had a problem with testing a method: The method is intentionally private, as exposing it public wouldn’t benefit anyone and it merely reduces code-overhead for repeated operations – given ‘x’ condition. In this case, it was if the product of two numbers was greater than nine, then take those numbers and add them together…