\JFacebookTest
Test class for JFacebook.
Synopsis
class JFacebookTest
extends TestCase
{
- // members
- protected JRegistry $options;
- protected JHttp $client;
- protected JFacebook $object;
- protected JFacebookOAuth $oauth;
- // Inherited members from TestCase
- protected $expectedErrors;
- // methods
- protected void setUp()
- public void test__GetUser()
- public void test__GetStatus()
- public void test__GetCheckin()
- public void test__GetEvent()
- public void test__GetGroup()
- public void test__GetLink()
- public void test__GetNote()
- public void test__GetPost()
- public void test__GetComment()
- public void test__GetPhoto()
- public void test__GetVideo()
- public void test__GetAlbum()
- public void test__GetOther()
- public void testSetOption()
- public void testGetOption()
- // 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
- $expectedErrors — array
- $oauth — JFacebookOAuth
- $object — JFacebook
- $options — JRegistry
Methods
protected
- setUp() — Sets up the fixture, for example, opens a network connection.
public
- testGetOption() — Tests the getOption method
- testSetOption() — Tests the setOption method
- test__GetAlbum() — Tests the magic __get method - album
- test__GetCheckin() — Tests the magic __get method - checkin
- test__GetComment() — Tests the magic __get method - comment
- test__GetEvent() — Tests the magic __get method - event
- test__GetGroup() — Tests the magic __get method - group
- test__GetLink() — Tests the magic __get method - link
- test__GetNote() — Tests the magic __get method - note
- test__GetOther() — Tests the magic __get method - other (non existent)
- test__GetPhoto() — Tests the magic __get method - photo
- test__GetPost() — Tests the magic __get method - post
- test__GetStatus() — Tests the magic __get method - status
- test__GetUser() — Tests the magic __get method - user
- test__GetVideo() — Tests the magic __get method - video
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.