@@ -30,10 +30,28 @@ public function testMeetingsEndpoint() {
3030 $ client = new Zoom \Zoom ( 'key ' , 'secret ' );
3131 $ this ->assertInstanceOf (Zoom \Endpoint \Meetings::class, $ client ->meetings );
3232 $ this ->assertInstanceOf (Zoom \Http \Request::class, $ client ->meetings );
33- $ this ->assertTrue ( method_exists ( $ client ->meetings , 'list ' ) );
34- $ this ->assertTrue ( method_exists ( $ client ->meetings , 'create ' ) );
35- $ this ->assertTrue ( method_exists ( $ client ->meetings , 'meeting ' ) );
36- $ this ->assertTrue ( method_exists ( $ client ->meetings , 'records ' ) );
33+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'list ' ),
34+ "'list' method is missing " );
35+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'create ' ),
36+ "'create' method is missing " );
37+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'meeting ' ),
38+ "'meeting' method is missing " );
39+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'remove ' ),
40+ "'remove' method is missing " );
41+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'update ' ),
42+ "'update' method is missing " );
43+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'status ' ),
44+ "'status' method is missing " );
45+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'listRegistrants ' ),
46+ "'listRegistrants' method is missing " );
47+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'addRegistrant ' ),
48+ "'addRegistrant' method is missing " );
49+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'updateRegistrantStatus ' ),
50+ "'updateRegistrantStatus' method is missing " );
51+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'pastMeeting ' ),
52+ "'pastMeeting' method is missing " );
53+ $ this ->assertTrue ( method_exists ( $ client ->meetings , 'pastMeetingParticipants ' ),
54+ "'pastMeetingParticipants' method is missing " );
3755 } catch ( Exception $ e ) {
3856 $ this ->fail ( $ e );
3957 }
0 commit comments