Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re^3: "Accessors break encapsulation"

by simonm (Vicar)
on Jul 19, 2005 at 16:29 UTC ( [id://476174]=note: print w/replies, xml ) Need Help??


in reply to Re^2: "Accessors break encapsulation"
in thread "Accessors break encapsulation"?

I do see the debugging value that you're talking about, but the danger in extensive testing of private methods is that it makes the test cases fragile.

The important thing when you are refactoring is that all of the public methods continue to adhere to the interface; if you have to update your test suite every time you make a change you might be reluctant to make internal improvements.

Replies are listed 'Best First'.
Re^4: "Accessors break encapsulation"
by etm117 (Pilgrim) on Jul 19, 2005 at 16:44 UTC
    I will most definitely agree on that point.

    I am still relatively new to testing, so I don't think I have gotten to the point that I am bothered by the tediousness of updating the test suite each time I make an internal refactor change to the code.

    /me now ponders whether the extra test cases on private methods are beneficial enough that they will be worth the extra effort in the long run, hmmm...

Re^4: "Accessors break encapsulation"
by Anonymous Monk on Jul 20, 2005 at 21:42 UTC
    If your classes do substantial calculations, it's useful to test the private methods that do the sub-calculations.

    Otherwise, you'll probably end up doing more work to manage all the code coverage cases. That is, you'll need to do the same code coverage, but you'll have to reason out how to get to each submethod, and ensure you pass it the right parameters to ensure all of it's children get called.

    I'd just as soon call all the children directly, with valid, invalid, likely, and not so likely datasets, and ensure that all cases are handled correctly. If I know the sub-methods do their jobs, then testing the API becomes more of an excercise in confirming the behaviour of the API against the final set of business requirements, versus a frantic search for coding errors.

    If you only test the API, you also run the risk of your subroutines containing hidden flaws that cancel each other out. If you try to re-use or refactor such flawed code, you'll be in for nasty surprises later on...

    But then again, testing is a lot of work in general, and if you refactor the internal methods, updating the test suite each time is a real pain.
    --
    AC

      Otherwise, you'll probably end up doing more work to manage all the code coverage cases. That is, you'll need to do the same code coverage, but you'll have to reason out how to get to each submethod, and ensure you pass it the right parameters to ensure all of it's children get called.

      I find that this is rarely a problem in real world usage. This is probably a side effect of doing TDD. If I factor out a private method from a public method then the coverage of my test suite isn't going to change, and if I change my private method I'll always write a test first.

      To put it another way, if you aren't exercising all of the code in your private methods why did you need to write them in the first place?

        adrianh, have you found some good material on TDD in Perl? I'm finding TDD, so far, only slightly less painful than debugging :-) . (Though I just received Kent Beck's book today, so maybe I'll pick up some wisdom there.)

        the lowliest monk

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://476174]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (4)
As of 2024-04-18 05:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found