Changeset 40f2e6 for src/Patterns/Observer/unittests
- Timestamp:
- Dec 13, 2011, 9:46:12 AM (14 years ago)
- Children:
- 2c11c1
- Parents:
- 75d156
- git-author:
- Frederik Heber <heber@…> (12/02/11 10:05:36)
- git-committer:
- Frederik Heber <heber@…> (12/13/11 09:46:12)
- Location:
- src/Patterns/Observer/unittests
- Files:
-
- 2 edited
-
ObserverUnitTest.cpp (modified) (3 diffs)
-
stubs/ObserverStub.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Patterns/Observer/unittests/ObserverUnitTest.cpp
r75d156 r40f2e6 160 160 161 161 void ObserverTest::doesNotifyTest(){ 162 CPPUNIT_ASSERT_EQUAL( 163 (size_t)NotificationObservable::Operation1Notify, 164 notificationObservable->getChannel(NotificationObservable::Operation1Notify)->getChannelNo()); 165 CPPUNIT_ASSERT_EQUAL( 166 (size_t)NotificationObservable::Operation2Notify, 167 notificationObservable->getChannel(NotificationObservable::Operation2Notify)->getChannelNo()); 168 notificationObservable->signOn(notificationObserver1, 169 notificationObservable->getChannel(NotificationObservable::Operation1Notify)); 170 notificationObservable->signOn(notificationObserver2, 171 notificationObservable->getChannel(NotificationObservable::Operation2Notify)); 162 notificationObservable->signOn(notificationObserver1, NotificationObservable::Operation1Notify); 163 notificationObservable->signOn(notificationObserver2, NotificationObservable::Operation2Notify); 172 164 173 165 notificationObservable->operation1(); … … 180 172 CPPUNIT_ASSERT(!notificationObserver1->wasNotified); 181 173 CPPUNIT_ASSERT(notificationObserver2->wasNotified); 182 183 174 } 184 175 … … 237 228 CPPUNIT_ASSERT_EQUAL( 1, observer2->updates); 238 229 239 240 230 obsset->signOff(observer1); 241 231 obsmap->signOff(observer2); -
src/Patterns/Observer/unittests/stubs/ObserverStub.cpp
r75d156 r40f2e6 170 170 void NotificationObserver::subjectKilled(Observable*){} 171 171 void NotificationObserver::recieveNotification(Observable *publisher, Notification_ptr notification){ 172 ASSERT(requestedNotification==notification,"Notification received that was not requested");172 CPPUNIT_ASSERT(requestedNotification==notification); 173 173 wasNotified = true; 174 174 }
Note:
See TracChangeset
for help on using the changeset viewer.
