I'm just throwing ideas in the air, so I hope nobody gets upset if my idea doesn't work.
But. You could try if a __call()-hack would work, assuming you are using PHP5 or later. My hypothesis is that if you call a private method, PHP just hides it and doesn't call it (instead of explicitly saying that you don't have access to that method). Therefore, your __call() magic method would catch that call, and try to call it internally. You could then have a constant to turn toggle between "unit test mode" and normal mode.
As said, not at all sure it would work, but it might be worth investigating.
Update: This doesn't work! As GrGr noted (and I now confirm, as I had time to test this) that calling a private method indeed causes a fatal error.
