X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/817b7b0e87589927983d8723ea2ad3faabbdebd3..9e1da4827a0ec18f9766d664b9af12c25e3f71fb:/tests/controls/checkboxtest.cpp?ds=sidebyside diff --git a/tests/controls/checkboxtest.cpp b/tests/controls/checkboxtest.cpp index 4585ee6125..8c1b3a607d 100644 --- a/tests/controls/checkboxtest.cpp +++ b/tests/controls/checkboxtest.cpp @@ -68,7 +68,7 @@ private: // register in the unnamed registry so that these tests are run by default CPPUNIT_TEST_SUITE_REGISTRATION( CheckBoxTestCase ); -// also include in it's own registry so that these tests can be run alone +// also include in its own registry so that these tests can be run alone CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( CheckBoxTestCase, "CheckBoxTestCase" ); void CheckBoxTestCase::setUp() @@ -83,10 +83,7 @@ void CheckBoxTestCase::tearDown() void CheckBoxTestCase::Check() { - wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(), - wxTestableFrame); - - EventCounter count(m_check, wxEVT_COMMAND_CHECKBOX_CLICKED); + EventCounter clicked(m_check, wxEVT_COMMAND_CHECKBOX_CLICKED); //We should be unchecked by default CPPUNIT_ASSERT(!m_check->IsChecked()); @@ -108,7 +105,7 @@ void CheckBoxTestCase::Check() CPPUNIT_ASSERT(!m_check->IsChecked()); //None of these should send events - CPPUNIT_ASSERT_EQUAL(0, frame->GetEventCount()); + CPPUNIT_ASSERT_EQUAL(0, clicked.GetCount()); } #ifdef wxHAS_3STATE_CHECKBOX