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
|
|
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
|
||
|
|
|
|
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:
Before I actually write the code. After that, I would write the user abstract class:
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. :) |
||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|