From 410b556a8651695dd15e742e0501d4da341ef594 Mon Sep 17 00:00:00 2001 From: Sam Tuke Date: Fri, 1 Jun 2012 18:59:57 +0100 Subject: [PATCH] Added class comment block --- tests/lib/user/backend.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/tests/lib/user/backend.php b/tests/lib/user/backend.php index 5dab5afb186..984249e84eb 100644 --- a/tests/lib/user/backend.php +++ b/tests/lib/user/backend.php @@ -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