\JGoogleDataCalendarTest
Test class for JGoogleDataCalendar.
Synopsis
class JGoogleDataCalendarTest
extends TestCase
{
- // members
- protected JRegistry $options;
- protected JHttp $http;
- protected JInput $input;
- protected JOAuth2Client $oauth;
- protected JGoogleAuthOauth2 $auth;
- protected JGoogleDataCalendar $object;
- // Inherited members from TestCase
- protected $expectedErrors;
- // methods
- protected void setUp()
- public void testAuth()
- public void testIsAuth()
- public void testRemoveCalendar()
- public void testGetCalendar()
- public void testAddCalendar()
- public void testListCalendars()
- public void testEditCalendarSettings()
- public void testClearCalendar()
- public void testDeleteCalendar()
- public void testCreateCalendar()
- public void testEditCalendar()
- public void testDeleteEvent()
- public void testGetEvent()
- public void testCreateEvent()
- public void testCreateEventStartException()
- public void testCreateEventEndException()
- public void testListRecurrences()
- public void testListEvents()
- public void testMoveEvent()
- public void testEditEvent()
- public void testSetOption()
- public void testGetOption()
- public void testFalse()
- public void testExceptions()
- // Inherited methods from TestCase
- public static boolean errorCallback()
- public void assignMockCallbacks()
- public void assignMockReturns()
- public JException expectedErrorCallback()
- public JApplication getMockApplication()
- public JApplicationCms getMockCmsApp()
- public JConfig getMockConfig()
- public JDatabase getMockDatabase()
- public JEventDispatcher getMockDispatcher()
- public JDocument getMockDocument()
- public JLanguage getMockLanguage()
- public JSession getMockSession()
- public JApplicationWeb getMockWeb()
- public void setExpectedError()
- protected void restoreErrorHandlers()
- protected void restoreFactoryState()
- protected void saveErrorHandlers()
- protected void saveFactoryState()
- protected void setErrorHandlers()
- protected void setErrorCallback()
- protected void setUp()
- protected void tearDown()
Hierarchy
Extends
Members
protected
- $auth — JGoogleAuthOauth2
- $expectedErrors — array
- $http — JHttp
- $input — JInput
- $oauth — JOAuth2Client
- $object — JGoogleDataCalendar
- $options — JRegistry
Methods
protected
- setUp() — Sets up the fixture, for example, opens a network connection.
public
- testAddCalendar() — Tests the addCalendar method
- testAuth() — Tests the auth method
- testClearCalendar() — Tests the clearCalendar method
- testCreateCalendar() — Tests the createCalendar method
- testCreateEvent() — Tests the createCalendar method
- testCreateEventEndException() — Tests the createEvent method with a bad end date
- testCreateEventStartException() — Tests the createEvent method with a bad start date
- testDeleteCalendar() — Tests the deleteCalendar method
- testDeleteEvent() — Tests the deleteEvent method
- testEditCalendar() — Tests the editCalendar method
- testEditCalendarSettings() — Tests the editCalendarSettings method
- testEditEvent() — Tests the editCalendar method
- testExceptions() — Tests that all functions properly return Exceptions
- testFalse() — Tests that all functions properly return false
- testGetCalendar() — Tests the getCalendar method
- testGetEvent() — Tests the getEvent method
- testGetOption() — Tests the getOption method
- testIsAuth() — Tests the isauth method
- testListCalendars() — Tests the listCalendars method
- testListEvents() — Tests the listEvents method
- testListRecurrences() — Tests the listRecurrences method
- testMoveEvent() — Tests the moveEvent method
- testRemoveCalendar() — Tests the removeCalendar method
- testSetOption() — Tests the setOption method
Inherited from TestCase
protected
- restoreErrorHandlers() — Sets the JError error handlers.
- restoreFactoryState() — Sets the Factory pointers
- saveErrorHandlers() — Saves the current state of the JError error handlers.
- saveFactoryState() — Saves the Factory pointers
- setErrorCallback() — Sets the JError error handlers to callback mode and points them at the test logging method.
- setErrorHandlers() — Sets the JError error handlers.
- setUp() — Overrides the parent setup method.
- tearDown() — Overrides the parent tearDown method.
public
- assignMockCallbacks() — Assigns mock callbacks to methods.
- assignMockReturns() — Assigns mock values to methods.
- errorCallback() — Receives the callback from JError and logs the required error information for the test.
- expectedErrorCallback() — Callback receives the error from JError and deals with it appropriately If a test expects a JError to be raised, it should call this setExpectedError first If you don't call this method first, the test will fail.
- getMockApplication() — Gets a mock application object.
- getMockCmsApp() — Gets a mock CMS application object.
- getMockConfig() — Gets a mock configuration object.
- getMockDatabase() — Gets a mock database object.
- getMockDispatcher() — Gets a mock dispatcher object.
- getMockDocument() — Gets a mock document object.
- getMockLanguage() — Gets a mock language object.
- getMockSession() — Gets a mock session object.
- getMockWeb() — Gets a mock web object.
- setExpectedError() — Tells the unit tests that a method or action you are about to attempt is expected to result in JError::raiseSomething being called.