ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
ilCourseTest Class Reference

Class ilCourseTest needsInstalledILIAS. More...

+ Inheritance diagram for ilCourseTest:
+ Collaboration diagram for ilCourseTest:

Public Member Functions

 testMemberAgreement ()
 Test member agreement IL_Init. More...
 

Protected Member Functions

 setUp ()
 

Protected Attributes

 $backupGlobals = false
 
 $preserveGlobalState = false
 

Detailed Description

Class ilCourseTest needsInstalledILIAS.

Definition at line 30 of file ilCourseTest.php.

Member Function Documentation

◆ setUp()

ilCourseTest::setUp ( )
protected

Definition at line 35 of file ilCourseTest.php.

35  : void
36  {
37  include_once("./Services/PHPUnit/classes/class.ilUnitUtil.php");
38  ilUnitUtil::performInitialisation();
39  }

◆ testMemberAgreement()

ilCourseTest::testMemberAgreement ( )

Test member agreement IL_Init.

Definition at line 45 of file ilCourseTest.php.

References $DIC, $ilDB, ilMemberAgreement\_deleteByUser(), ilMemberAgreement\_hasAccepted(), ilMemberAgreement\_hasAgreements(), and ilMemberAgreement\_hasAgreementsByObjId().

46  {
47  include_once 'Services/Membership/classes/class.ilMemberAgreement.php';
48 
49  global $DIC;
50 
51  $ilDB = $DIC['ilDB'];
52 
53 
54  $agree = new ilMemberAgreement(9999, 8888);
55  $agree->read();
56  $agree->setAccepted(true);
57  $agree->save();
58 
59  $agree = new ilMemberAgreement(9999, 8888);
60  $agree->read();
61  $sta = $agree->isAccepted();
62  $this->assertEquals($sta, true);
63  $agree->delete();
64 
65  $agree = new ilMemberAgreement(9999, 8888);
66  $agree->read();
67  $sta = $agree->isAccepted();
68  $this->assertEquals($sta, false);
69 
70  $sta = ilMemberAgreement::_hasAccepted(9999, 8888);
71  $this->assertEquals($sta, false);
72 
73  $agree = new ilMemberAgreement(9999, 8888);
74  $agree->read();
75  $agree->setAccepted(true);
76  $agree->save();
77 
79  $this->assertEquals($sta, true);
80 
82  $this->assertEquals($sta, true);
83 
85  }
static _hasAccepted($a_usr_id, $a_obj_id)
Check if user has accepted agreement.
static _deleteByUser($a_usr_id)
Delete all entries by user.
global $DIC
Definition: goto.php:24
static _hasAgreements()
Check if there is any user agreement.
static _hasAgreementsByObjId($a_obj_id)
Check if there is any user agreement.
global $ilDB
+ Here is the call graph for this function:

Field Documentation

◆ $backupGlobals

ilCourseTest::$backupGlobals = false
protected

Definition at line 32 of file ilCourseTest.php.

◆ $preserveGlobalState

ilCourseTest::$preserveGlobalState = false
protected

Definition at line 33 of file ilCourseTest.php.


The documentation for this class was generated from the following file: