\JFeedEntryTest
Test class for JFeedEntry.
Synopsis
class JFeedEntryTest
extends TestCase
{
- // members
- private JFeedEntry $_instance;
- // Inherited members from TestCase
- protected $expectedErrors;
- // methods
- public void testMagicGetSet()
- public void testMagicGetNull()
- public void testMagicSetUpdatedDateString()
- public void testMagicSetUpdatedDateJDateObject()
- public void testMagicSetAuthorWithPerson()
- public void testMagicSetAuthorWithInvalidAuthor()
- public void testMagicSetSourceWithInvalidSource()
- public void testMagicSetCategoriesWithInvalidProperty()
- public void testMagicSetGeneral()
- public void testAddCategory()
- public void testAddContributor()
- public void testAddLink()
- public void testRemoveCategory()
- public void testRemoveContributor()
- public void testRemoveLink()
- public void testSetAuthor()
- protected void setUp()
- protected void tearDown()
- // 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.
- tearDown() — Method to tear down whatever was set up before the test.
public
- testAddCategory() — Tests the JFeedEntry::addCategory method.
- testAddContributor() — Tests the JFeedEntry::addContributor method.
- testAddLink() — Tests JFeedEntry->addLink()
- testMagicGetNull() — Tests the JFeedEntry::__get method when the property has not been set to a value.
- testMagicGetSet() — Tests the JFeedEntry::__get method when the property has been set to a value.
- testMagicSetAuthorWithInvalidAuthor() — Tests the JFeedEntry::__set method with an invalid argument for author.
- testMagicSetAuthorWithPerson() — Tests the JFeedEntry::__set method with a person object.
- testMagicSetCategoriesWithInvalidProperty() — Tests the JFeedEntry::__set method with a disallowed property.
- testMagicSetGeneral() — Tests the JFeedEntry::__set method with a typical property.
- testMagicSetSourceWithInvalidSource() — Tests the JFeedEntry::__set method with an invalid argument for author.
- testMagicSetUpdatedDateJDateObject() — Tests the JFeedEntry::__set method with updatedDate with a JDate object.
- testMagicSetUpdatedDateString() — Tests the JFeedEntry::__set method with updatedDate with a string.
- testRemoveCategory() — Tests the JFeedEntry::removeCategory method.
- testRemoveContributor() — Tests the JFeedEntry::removeContributor method.
- testRemoveLink() — Tests JFeedEntry->removeLink()
- testSetAuthor() — Tests the JFeedEntry::setAuthor 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.