vote up 1 vote down star

I have a series of PHPUnit tests to validate a class, "Class A".
I have another class, "Class B" which extends Class A.

Is there a good way to test that "Class B passes Class A's tests", or in other words "Class B behaves like Class A" without duplicating the test code?

I could test for the extends (using instanceof), but that seems like a misleading test.
I care that it behaves like Class A, not that it extends Class A, right? or wrong?

flag

50% accept rate

1 Answer

vote up 1 vote down check

Just extend the PHPUnit test case of class A, for class B, that should do it.

link|flag
Agreed. Also, of A and B simply implement the same interface, you could have a base test case C that test cases A and B extend. – Michael Johnson Oct 31 at 3:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.