vote up 0 vote down star

How do I test an abstract class works in PHPUnit?

I'd expect that I'd have to create some sort of object as part of the test? though - I've no idea the best practice for this, or if phpunit allows for this

flag

4 Answers

vote up 2 vote down check

When using unit testing, you do not test the interface per-se but the functionality. You cant test the functionality of an abstract class because it has none.

When you do a test you first write the test before you write the interface. For example: I might write the following test:

$user = UserFactory::CreateUser();
$user->user_username = "nelson";
$user->Save();
$id = $user->user_id;

$user2 = UserFacotry::CreateUser();
$user2->Load($id);
if ($user2->user_username != "nelson")
    die a miserable death

Before I actually write the code. After that, I would write the user abstract class:

abstract class IUser
{
    abstract function Load();
    abstract function Save();
}

Then I would write a User class that extends IUser. Then I would write the UserFactory that returns a User object. Then I would run the test again to see if it works.

:)

link|flag
PHP supports interfaces. Why would you abuse abstract classes as interfaces? :) – hangy Nov 12 '08 at 19:01
True, true. But abstract classes are much more familiar to me with my C++ background :p – Nelson LaQuet Nov 13 '08 at 4:50
vote up 0 vote down

Nelson's answer is wrong.

Abstract classes don't require all of their methods to be abstract.

The implemented methods are the ones we need to test.

What you can do is create a fake stub class on the unit test file, have it extend the abstract class and implement only what's required with no functionality at all, of course, and test that.

Cheers.

link|flag
vote up 0 vote down

If you do not want to subclass the abstract class just to perform a unit test on the methods which are implemented in the abstract class already, you could try to see whether your framework allows you to mock abstract classes.

link|flag
vote up 1 vote down

Eran, your method should work, but it goes against the tendency of writing the test before the actual code.

What I would suggest is to write your tests on the desired functionality of a non-abstract subclass of the abstract class in question, then write both the abstract class and the implementing subclass, and finally run the test.

Your tests should obviously test the defined methods of the abstract class, but always via the subclass.

link|flag

Your Answer

Get an OpenID
or

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