\JPaginationTest
Test class for JPagination.
Synopsis
class JPaginationTest
extends TestCase
{
- // Inherited members from TestCase
- protected $expectedErrors;
- // methods
- public void setUp()
- protected void tearDown()
- public array dataTestConstructor()
- public void testConstructor()
- public void testSetAdditionalUrlParam()
- public void testGetAdditionalUrlParam()
- public void testGetRowOffset()
- public void testSetEmptyAdditionalUrlParam()
- public array dataTestBuildDataObject()
- public void testGetData()
- public array dataTestGetPagesCounter()
- public void testGetPagesCounter()
- public array dataTestGetPagesLinks()
- public void testGetPagesLinks()
- public array dataTestGetLimitBox()
- public void testGetLimitBox()
- public array dataTestOrderUpIcon()
- public void testOrderUpIcon()
- public array dataTestOrderDownIcon()
- public void testOrderDownIcon()
- public array dataTestListRender()
- public void testListRender()
- public array dataTestItemActive()
- public void testItemActive()
- public array dataTestItemInactive()
- public void testItemInactive()
- public void testBuildDataObject()
- public array dataSet()
- public void testSet()
- public array dataGet()
- public void testGet()
- // 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
- $expectedErrors — array
Methods
protected
- tearDown() — Overrides the parent tearDown method.
public
- dataGet() — Provides the data to test the get method.
- dataSet() — Provides the data to test the set method.
- dataTestBuildDataObject() — Provides the data to test the testBuildDataObject and getData methods.
- dataTestConstructor() — Provides the data to test the constructor method.
- dataTestGetLimitBox() — Provides the data to test the getLimitBox method.
- dataTestGetPagesCounter() — Provides the data to test the getPagesCounter() method.
- dataTestGetPagesLinks() — Provides the data to test the getPagesLinks method.
- dataTestItemActive() — Provides the data to test the _item_active method.
- dataTestItemInactive() — Provides the data to test the _item_inactive method.
- dataTestListRender() — Provides the data to test the _list_render method.
- dataTestOrderDownIcon() — Provides the data to test the orderUpIcon method.
- dataTestOrderUpIcon() — Provides the data to test the orderUpIcon method.
- setUp() — Setup for testing.
- testBuildDataObject() — This method tests the _buildDataObject method.
- testConstructor() — This method tests the constructor.
- testGet() — This method tests the get method.
- testGetAdditionalUrlParam() — This method tests the getAdditionalUrlParam function by setting a url with Reflection then retrieving it.
- testGetData() — This method tests the _buildDataObject method.
- testGetLimitBox() — This method tests the getLimitBox function.
- testGetPagesCounter() — Tests the getPagesCounter method.
- testGetPagesLinks() — This method tests the getPagesLinks method.
- testGetRowOffset() — This method tests the getRowOffset function.
- testItemActive() — This method tests the _item_active method.
- testItemInactive() — This method tests the _item_active method.
- testListRender() — This method tests the _list_render method.
- testOrderDownIcon() — Test the html string for the orderDownIcon function.
- testOrderUpIcon() — Test the html string for the orderUpIcon function.
- testSet() — This method tests the set method.
- testSetAdditionalUrlParam() — This method tests the setAdditionalUrlParam function by setting a url.
- testSetEmptyAdditionalUrlParam() — This method tests the setAdditionalUrlParam function by emptying an existing URL.
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.