Added class comment block

This commit is contained in:
Sam Tuke 2012-06-01 18:59:57 +01:00
parent 4b4d13165a
commit 410b556a86
1 changed files with 10 additions and 0 deletions

View File

@ -20,6 +20,16 @@
*
*/
/**
* Abstract class to provide the basis of backend-specific unit test classes.
*
* All subclasses MUST assign a backend property in setUp() which implements
* user operations (add, remove, etc.). Test methods in this class will then be
* run on each separate subclass and backend therein.
*
* For an example see /tests/lib/user/dummy.php
*/
abstract class Test_User_Backend extends UnitTestCase {
/**
* @var OC_User_Backend $backend