File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -300,7 +300,8 @@ $ ./vendor/bin/phpunit tests
300
300
## API Coverage
301
301
302
302
* Activity Details
303
- * [X] RememberMe ID ` getRememberMeId() `
303
+ * [X] Remember Me ID ` getRememberMeId() `
304
+ * [X] Parent Remember Me ID ` getParentRememberMeId() `
304
305
* [X] Receipt ID ` getReceiptId() `
305
306
* [X] Timestamp ` getTimestamp() ` // DateTime Object
306
307
* [X] Application Profile ` getApplicationProfile() `
Original file line number Diff line number Diff line change @@ -29,11 +29,6 @@ class ActivityDetailsTest extends TestCase
29
29
*/
30
30
public $ applicationProfile ;
31
31
32
- /**
33
- * @var string Remember Me ID
34
- */
35
- public $ rememberMeId = 'Hig2yAT79cWvseSuXcIuCLa5lNkAPy70rxetUaeHlTJGmiwc/g1MWdYWYrexWvPU ' ;
36
-
37
32
public function setUp ()
38
33
{
39
34
$ pem = file_get_contents (PEM_FILE );
@@ -58,15 +53,17 @@ public function testActivityDetailsInstance()
58
53
*/
59
54
public function testGetRememberMeId ()
60
55
{
61
- $ this ->assertEquals ($ this ->rememberMeId , $ this ->activityDetails ->getRememberMeId ());
56
+ $ rememberMeId = 'Hig2yAT79cWvseSuXcIuCLa5lNkAPy70rxetUaeHlTJGmiwc/g1MWdYWYrexWvPU ' ;
57
+ $ this ->assertEquals ($ rememberMeId , $ this ->activityDetails ->getRememberMeId ());
62
58
}
63
59
64
60
/**
65
61
* @covers ::getParentRememberMeId
66
62
*/
67
63
public function testGetParentRememberMeIdExists ()
68
64
{
69
- $ this ->assertTrue (method_exists ($ this ->activityDetails , 'getParentRememberMeId ' ));
65
+ $ parentRememberMeId = 'f5RjVQMyoKOvO/hkv43Ik+t6d6mGfP2tdrNijH4k4qafTG0FSNUgQIvd2Z3Nx1j8 ' ;
66
+ $ this ->assertEquals ($ parentRememberMeId , $ this ->activityDetails ->getParentRememberMeId ());
70
67
}
71
68
72
69
/**
Load Diff Large diffs are not rendered by default.
You can’t perform that action at this time.
0 commit comments