\JDataSetTest
Tests for the JDataSet class.
Synopsis
class JDataSetTest
extends TestCase
{
- // members
- private JDataSet $_instance;
- // Inherited members from TestCase
- protected $expectedErrors;
- // methods
- public void test__construct()
- public void test__construct_array()
- public void test__construct_scalar()
- public void test__call()
- public void test__get()
- public void test__isset()
- public void test__set()
- public void test__unset()
- public void testCount()
- public void testClear()
- public void testCurrent()
- public void testDump()
- public void testJsonSerialize()
- public void testKey()
- public void testKeys()
- public void testNext()
- public void testOffsetExists()
- public void testOffsetGet()
- public void testOffsetSet()
- public void testOffsetSet_exception1()
- public void testOffsetUnset()
- public void testOffsetRewind()
- public void testValid()
- public void test_initialise()
- public void test_foreach()
- protected void setUp()
- // 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
Methods
protected
- setUp() — Setup the tests.
public
- testClear() — Tests the clear method.
- testCount() — Tests the count method.
- testCurrent() — Tests the current method.
- testDump() — Tests the dump method.
- testJsonSerialize() — Tests the jsonSerialize method.
- testKey() — Tests the key method.
- testKeys() — Tests the keys method.
- testNext() — Tests the next method.
- testOffsetExists() — Tests the offsetExists method.
- testOffsetGet() — Tests the offsetGet method.
- testOffsetRewind() — Tests the offsetRewind method.
- testOffsetSet() — Tests the offsetSet method.
- testOffsetSet_exception1() — Tests the offsetSet method for an expected exception
- testOffsetUnset() — Tests the offsetUnset method.
- testValid() — Tests the valid method.
- test__call() — Tests the __call method.
- test__construct() — Tests the __construct method.
- test__construct_array() — Tests the __construct method with an array that does not contain JData objects.
- test__construct_scalar() — Tests the __construct method with scalar input.
- test__get() — Tests the __get method.
- test__isset() — Tests the __isset method.
- test__set() — Tests the __set method.
- test__unset() — Tests the __unset method.
- test_foreach() — Tests using JDataSet in a foreach statement.
- test_initialise() — Test that JDataSet::_initialise method indirectly.
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.