X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/817b7b0e87589927983d8723ea2ad3faabbdebd3..d9307d006e88025e28457290c9997f7c0f7c4fdc:/tests/controls/checkboxtest.cpp diff --git a/tests/controls/checkboxtest.cpp b/tests/controls/checkboxtest.cpp index 4585ee6125..c36ea4325b 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_CHECKBOX); //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