org.kuali.rice.ken.dao
Class NotificationChannelDaoTest

java.lang.Object
  extended by org.junit.Assert
      extended by org.kuali.rice.test.BaseRiceTestCase
          extended by org.kuali.rice.test.RiceTestCase
              extended by org.kuali.rice.test.RiceInternalSuiteDataTestCase
                  extended by org.kuali.rice.test.BaseModuleTestCase
                      extended by org.kuali.rice.test.BaselineTestCase
                          extended by org.kuali.rice.ken.test.KENTestCase
                              extended by org.kuali.rice.ken.dao.BusinessObjectDaoTestCaseBase
                                  extended by org.kuali.rice.ken.dao.BusinessObjectPersistenceTestCaseBase
                                      extended by org.kuali.rice.ken.dao.NotificationChannelDaoTest
All Implemented Interfaces:
MethodAware

public class NotificationChannelDaoTest
extends BusinessObjectPersistenceTestCaseBase

This class test basic persistence for the NotificationChannel business object.

Author:
Kuali Rice Team (rice.collab@kuali.org)

Nested Class Summary
 
Nested classes/interfaces inherited from class org.kuali.rice.ken.test.KENTestCase
KENTestCase.ClearCacheLifecycle
 
Nested classes/interfaces inherited from class org.kuali.rice.test.BaselineTestCase
BaselineTestCase.BaselineMode, BaselineTestCase.Mode
 
Field Summary
(package private)  NotificationChannel channel1
           
(package private)  NotificationChannel channel2
           
(package private)  NotificationProducer mockProducer1
           
private  String[] updatedDescriptions
           
private  boolean[] updatedSubscribables
           
 
Fields inherited from class org.kuali.rice.ken.dao.BusinessObjectDaoTestCaseBase
businessObjectDao
 
Fields inherited from class org.kuali.rice.ken.test.KENTestCase
services, transactionManager
 
Fields inherited from class org.kuali.rice.test.BaselineTestCase
dirty
 
Fields inherited from class org.kuali.rice.test.BaseModuleTestCase
LOG, moduleName
 
Fields inherited from class org.kuali.rice.test.RiceTestCase
DEFAULT_TEST_HARNESS_SPRING_BEANS, failedSuiteTestName, perTestLifeCycles, SUITE_LIFE_CYCLES_FAILED, SUITE_LIFE_CYCLES_RAN, suiteLifeCycles
 
Fields inherited from class org.kuali.rice.test.BaseRiceTestCase
log, method
 
Constructor Summary
NotificationChannelDaoTest()
           
 
Method Summary
protected  boolean delete()
          This method must be implemented to return true if a record was properly delted from the database.
protected  boolean insert()
          This method must be implemented to return true if a record was properly inserted into the database.
protected  boolean retrieve()
          This method must be implemented to return true if a record was properly retreived from the database.
protected  void setup()
          This method should be overridden and implemented to perform a setup of any dependent objects that business object may need to reference.
protected  boolean update()
          This method must be implemented to return true if a record was properly updated in the database.
protected  boolean validateChanges()
          This method should be implemented to retrieve the objects that were just updated, and validate that their changes took effect.
 
Methods inherited from class org.kuali.rice.ken.dao.BusinessObjectPersistenceTestCaseBase
testBasicPersistence
 
Methods inherited from class org.kuali.rice.ken.dao.BusinessObjectDaoTestCaseBase
setUp
 
Methods inherited from class org.kuali.rice.ken.test.KENTestCase
disableQuartzJobs, enableQuartzJobs, getLoadApplicationLifecycle, getNotificationPerTestLifecycles, getPerTestLifecycles, getPerTestTablesToClear, getSuiteLifecycles
 
Methods inherited from class org.kuali.rice.test.BaselineTestCase
getClearDbPerTestLifecycles, getMode, getPerTestTablesNotToClear, getRollbackPerTestLifecycles
 
Methods inherited from class org.kuali.rice.test.BaseModuleTestCase
getModuleName
 
Methods inherited from class org.kuali.rice.test.RiceInternalSuiteDataTestCase
getKIMDataLoadOrderFile, getKIMSqlFileBaseLocation, getKNSDefaultSuiteTestData, loadSuiteTestData
 
Methods inherited from class org.kuali.rice.test.RiceTestCase
configureLogging, dumpMemory, getBaseDir, getConfigLocations, getFullTestName, getModuleTestConfigLocation, getRiceMasterDefaultConfigFile, getTestHarnessConfig, getTestHarnessSpringBeansLocation, getTestHarnessSpringResourceLoader, loadPerTestData, logAfterRun, logBeforeRun, report, setBaseDirSystemProperty, setModuleName, setUpInternal, startLifecycles, startSuiteDataLoaderLifecycles, stopLifecycles, tearDown
 
Methods inherited from class org.kuali.rice.test.BaseRiceTestCase
getName, getPerTestDataLoaderLifecycle, resetLogLevels, setLogLevel, setName, setTestMethod
 
Methods inherited from class org.junit.Assert
assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertArrayEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertThat, assertThat, assertTrue, assertTrue, fail, fail
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

channel1

NotificationChannel channel1

channel2

NotificationChannel channel2

mockProducer1

NotificationProducer mockProducer1

updatedDescriptions

private String[] updatedDescriptions

updatedSubscribables

private boolean[] updatedSubscribables
Constructor Detail

NotificationChannelDaoTest

public NotificationChannelDaoTest()
Method Detail

setup

protected void setup()
Description copied from class: BusinessObjectPersistenceTestCaseBase
This method should be overridden and implemented to perform a setup of any dependent objects that business object may need to reference. Since we are using Spring's automated transaction rollback, we do not need to worry about tearing stuff down.

Overrides:
setup in class BusinessObjectPersistenceTestCaseBase
See Also:
BusinessObjectPersistenceTestCaseBase.setup()

delete

protected boolean delete()
Description copied from class: BusinessObjectPersistenceTestCaseBase
This method must be implemented to return true if a record was properly delted from the database.

Specified by:
delete in class BusinessObjectPersistenceTestCaseBase
Returns:
boolean
See Also:
BusinessObjectPersistenceTestCaseBase.delete()

retrieve

protected boolean retrieve()
Description copied from class: BusinessObjectPersistenceTestCaseBase
This method must be implemented to return true if a record was properly retreived from the database.

Specified by:
retrieve in class BusinessObjectPersistenceTestCaseBase
Returns:
boolean
See Also:
BusinessObjectPersistenceTestCaseBase.retrieve()

insert

protected boolean insert()
Description copied from class: BusinessObjectPersistenceTestCaseBase
This method must be implemented to return true if a record was properly inserted into the database.

Specified by:
insert in class BusinessObjectPersistenceTestCaseBase
Returns:
boolean
See Also:
BusinessObjectPersistenceTestCaseBase.insert()

update

protected boolean update()
Description copied from class: BusinessObjectPersistenceTestCaseBase
This method must be implemented to return true if a record was properly updated in the database.

Specified by:
update in class BusinessObjectPersistenceTestCaseBase
Returns:
boolean
See Also:
BusinessObjectPersistenceTestCaseBase.update()

validateChanges

protected boolean validateChanges()
Description copied from class: BusinessObjectPersistenceTestCaseBase
This method should be implemented to retrieve the objects that were just updated, and validate that their changes took effect.

Specified by:
validateChanges in class BusinessObjectPersistenceTestCaseBase
Returns:
boolean
See Also:
BusinessObjectPersistenceTestCaseBase.validateChanges()


Copyright © 2007-2011 The Kuali Foundation. All Rights Reserved.