\JTwitterListsTest
Test class for JTwitterLists.
Synopsis
class JTwitterListsTest
extends TestCase
{
- // members
- protected JRegistry $options;
- protected JHttp $client;
- protected JInput $input;
- protected JTwitterLists $object;
- protected JTwitterOauth $oauth;
- protected $sampleString;
- protected $errorString;
- protected $rateLimit;
- // Inherited members from TestCase
- protected $expectedErrors;
- // methods
- protected void setUp()
- public array seedUser()
- public void testGetLists()
- public void testGetListsFailure()
- public array seedListStatuses()
- public void testGetStatuses()
- public void testGetStatusesFailure()
- public void testGetSubscribers()
- public void testGetSubscribersFailure()
- public array seedMembers()
- public void testDeleteMembers()
- public void testDeleteMembersFailure()
- public void testSubscribe()
- public void testSubscribeFailure()
- public array seedListUserOwner()
- public void testIsMember()
- public void testIsMemberFailure()
- public void testIsSubscriber()
- public void testIsSubscriberFailure()
- public void testUnsubscribe()
- public void testUnsubscribeFailure()
- public void testAddMembers()
- public void testAddMembersFailure()
- public void testGetMembers()
- public void testGetMembersFailure()
- public void testGetListById()
- public void testGetListByIdFailure()
- public void testGetSubscriptions()
- public void testGetSubscriptionsFailure()
- public void testUpdate()
- public void testUpdateFailure()
- public void testCreate()
- public void testCreateFailure()
- public void testDelete()
- public void testDeleteFailure()
- // 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
- $client — JHttp
- $errorString — string
- $expectedErrors — array
- $input — JInput
- $oauth — JTwitterOauth
- $object — JTwitterLists
- $options — JRegistry
- $rateLimit — string
- $sampleString — string
Methods
protected
- setUp() — Sets up the fixture, for example, opens a network connection.
public
- seedListStatuses() — Provides test data for request format detection.
- seedListUserOwner() — Provides test data for request format detection.
- seedMembers() — Provides test data for request format detection.
- seedUser() — Provides test data for request format detection.
- testAddMembers() — Tests the addListMembers method
- testAddMembersFailure() — Tests the addListMembers method - failure
- testCreate() — Tests the createList method
- testCreateFailure() — Tests the createList method - failure
- testDelete() — Tests the deleteList method
- testDeleteFailure() — Tests the deleteList method - failure
- testDeleteMembers() — Tests the deleteListMembers method
- testDeleteMembersFailure() — Tests the deleteListMembers method - failure
- testGetListById() — Tests the getListById method
- testGetListByIdFailure() — Tests the getListById method - failure
- testGetLists() — Tests the getAllLists method
- testGetListsFailure() — Tests the getAllLists method - failure
- testGetMembers() — Tests the getListMembers method
- testGetMembersFailure() — Tests the getListMembers method - failure
- testGetStatuses() — Tests the getListStatuses method
- testGetStatusesFailure() — Tests the getListStatuses method - failure
- testGetSubscribers() — Tests the getListSubscribers method
- testGetSubscribersFailure() — Tests the getListSubscribers method - failure
- testGetSubscriptions() — Tests the getSubscriptions method
- testGetSubscriptionsFailure() — Tests the getSubscriptions method - failure
- testIsMember() — Tests the isListMember method
- testIsMemberFailure() — Tests the isListMember method - failure
- testIsSubscriber() — Tests the isListSubscriber method
- testIsSubscriberFailure() — Tests the isListSubscriber method - failure
- testSubscribe() — Tests the subscribe method
- testSubscribeFailure() — Tests the subscribe method - failure
- testUnsubscribe() — Tests the unsubscribe method
- testUnsubscribeFailure() — Tests the unsubscribe method - failure
- testUpdate() — Tests the updateList method
- testUpdateFailure() — Tests the updateList method - failure
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.