mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 11:31:53 +01:00
changes for 1.2.4
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
//
|
||||
// BasicEventTest.h
|
||||
//
|
||||
// $Id: //poco/1.2/Foundation/testsuite/src/BasicEventTest.h#1 $
|
||||
// $Id: //poco/1.2/Foundation/testsuite/src/BasicEventTest.h#2 $
|
||||
//
|
||||
// Tests for BasicEvent
|
||||
//
|
||||
@@ -56,14 +56,14 @@ public:
|
||||
|
||||
void testNoDelegate();
|
||||
void testSingleDelegate();
|
||||
void testDuplicateRegister ();
|
||||
void testDuplicateUnregister ();
|
||||
void testDisabling ();
|
||||
void testDuplicateRegister();
|
||||
void testDuplicateUnregister();
|
||||
void testDisabling();
|
||||
void testExpire();
|
||||
void testExpireReRegister();
|
||||
void testReturnParams ();
|
||||
void testOverwriteDelegate ();
|
||||
void testAsyncNotify ();
|
||||
void testReturnParams();
|
||||
void testOverwriteDelegate();
|
||||
void testAsyncNotify();
|
||||
|
||||
void setUp();
|
||||
void tearDown();
|
||||
@@ -71,16 +71,16 @@ public:
|
||||
|
||||
protected:
|
||||
|
||||
void onSimple ( const void* pSender, int& i );
|
||||
void onSimpleOther ( const void* pSender, int& i );
|
||||
void onConstSimple ( const void* pSender, const int& i );
|
||||
void onComplex ( const void* pSender, Poco::EventArgs* & i );
|
||||
void onComplex2 ( const void* pSender, Poco::EventArgs & i );
|
||||
void onConstComplex ( const void* pSender, const Poco::EventArgs*& i );
|
||||
void onConst2Complex ( const void* pSender, const Poco::EventArgs * const & i );
|
||||
void onAsync ( const void* pSender, int& i );
|
||||
void onSimple(const void* pSender, int& i);
|
||||
void onSimpleOther(const void* pSender, int& i);
|
||||
void onConstSimple(const void* pSender, const int& i);
|
||||
void onComplex(const void* pSender, Poco::EventArgs* & i);
|
||||
void onComplex2(const void* pSender, Poco::EventArgs & i);
|
||||
void onConstComplex(const void* pSender, const Poco::EventArgs*& i);
|
||||
void onConst2Complex(const void* pSender, const Poco::EventArgs * const & i);
|
||||
void onAsync(const void* pSender, int& i);
|
||||
|
||||
int getCount () const;
|
||||
int getCount() const;
|
||||
private:
|
||||
int _count;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user