]> git.saurik.com Git - wxWidgets.git/blob - tests/controls/checklistboxtest.cpp
Disabled wxRTC tests that don't work in wxGTK
[wxWidgets.git] / tests / controls / checklistboxtest.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/controls/checklistlistbox.cpp
3 // Purpose: wxCheckListBox unit test
4 // Author: Steven Lamerton
5 // Created: 2010-06-30
6 // RCS-ID: $Id$
7 // Copyright: (c) 2010 Steven Lamerton
8 ///////////////////////////////////////////////////////////////////////////////
9
10 #include "testprec.h"
11
12 #if wxUSE_CHECKLISTBOX
13
14 #ifdef __BORLANDC__
15 #pragma hdrstop
16 #endif
17
18 #ifndef WX_PRECOMP
19 #include "wx/app.h"
20 #include "wx/checklst.h"
21 #endif // WX_PRECOMP
22
23 #include "itemcontainertest.h"
24 #include "testableframe.h"
25
26 class CheckListBoxTestCase : public ItemContainerTestCase, public CppUnit::TestCase
27 {
28 public:
29 CheckListBoxTestCase() { }
30
31 virtual void setUp();
32 virtual void tearDown();
33
34 private:
35 virtual wxItemContainer *GetContainer() const { return m_check; }
36 virtual wxWindow *GetContainerWindow() const { return m_check; }
37
38 CPPUNIT_TEST_SUITE( CheckListBoxTestCase );
39 wxITEM_CONTAINER_TESTS();
40 CPPUNIT_TEST( Check );
41 CPPUNIT_TEST_SUITE_END();
42
43 void Check();
44
45 wxCheckListBox* m_check;
46
47 DECLARE_NO_COPY_CLASS(CheckListBoxTestCase)
48 };
49
50 // register in the unnamed registry so that these tests are run by default
51 CPPUNIT_TEST_SUITE_REGISTRATION( CheckListBoxTestCase );
52
53 // also include in it's own registry so that these tests can be run alone
54 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( CheckListBoxTestCase, "CheckListBoxTestCase" );
55
56 void CheckListBoxTestCase::setUp()
57 {
58 m_check = new wxCheckListBox(wxTheApp->GetTopWindow(), wxID_ANY);
59 }
60
61 void CheckListBoxTestCase::tearDown()
62 {
63 wxDELETE(m_check);
64 }
65
66 void CheckListBoxTestCase::Check()
67 {
68 wxTestableFrame* frame = wxStaticCast(wxTheApp->GetTopWindow(),
69 wxTestableFrame);
70
71 EventCounter count(m_check, wxEVT_COMMAND_CHECKLISTBOX_TOGGLED);
72
73 wxArrayString testitems;
74 testitems.Add("item 0");
75 testitems.Add("item 1");
76 testitems.Add("item 2");
77 testitems.Add("item 3");
78
79 m_check->Append(testitems);
80
81 m_check->Check(0);
82 m_check->Check(1);
83 m_check->Check(1, false);
84
85 //We should not get any events when changing this from code
86 CPPUNIT_ASSERT_EQUAL(0, frame->GetEventCount());
87 CPPUNIT_ASSERT_EQUAL(true, m_check->IsChecked(0));
88 CPPUNIT_ASSERT_EQUAL(false, m_check->IsChecked(1));
89
90 //Make sure a double check of an items doesn't deselect it
91 m_check->Check(0);
92
93 CPPUNIT_ASSERT_EQUAL(true, m_check->IsChecked(0));
94 }
95
96 #endif // wxUSE_CHECKLISTBOX