Move getting the unit test event count from wxTestableFrame to the EventCounter class. This reduces the need to have wxTestableFrame pointers all over the unit testing code and should reduce bugs caused by counting the wrong events.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70871 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -68,10 +68,7 @@ void SpinCtrlTestCase::tearDown()
|
||||
void SpinCtrlTestCase::Arrows()
|
||||
{
|
||||
#if wxUSE_UIACTIONSIMULATOR
|
||||
wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
|
||||
wxTestableFrame);
|
||||
|
||||
EventCounter count(m_spin, wxEVT_COMMAND_SPINCTRL_UPDATED);
|
||||
EventCounter updated(m_spin, wxEVT_COMMAND_SPINCTRL_UPDATED);
|
||||
|
||||
wxUIActionSimulator sim;
|
||||
|
||||
@@ -81,14 +78,15 @@ void SpinCtrlTestCase::Arrows()
|
||||
|
||||
wxYield();
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount());
|
||||
CPPUNIT_ASSERT_EQUAL(1, updated.GetCount());
|
||||
CPPUNIT_ASSERT_EQUAL(1, m_spin->GetValue());
|
||||
updated.Clear();
|
||||
|
||||
sim.Char(WXK_DOWN);
|
||||
|
||||
wxYield();
|
||||
|
||||
CPPUNIT_ASSERT_EQUAL(1, frame->GetEventCount());
|
||||
CPPUNIT_ASSERT_EQUAL(1, updated.GetCount());
|
||||
CPPUNIT_ASSERT_EQUAL(0, m_spin->GetValue());
|
||||
#endif
|
||||
}
|
||||
|
Reference in New Issue
Block a user