]> git.saurik.com Git - wxWidgets.git/blame - tests/controls/searchctrltest.cpp
Add test for absence of events from wxSpinCtrlDouble ctor.
[wxWidgets.git] / tests / controls / searchctrltest.cpp
CommitLineData
09ca8913
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: tests/controls/searchctrltest.cpp
3// Purpose: wxSearchCtrl unit test
4// Author: Vadim Zeitlin
5// Created: 2013-01-20
09ca8913
VZ
6// Copyright: (c) 2013 Vadim Zeitlin <vadim@wxwidgets.org>
7///////////////////////////////////////////////////////////////////////////////
8
9#include "testprec.h"
10
11#if wxUSE_SEARCHCTRL
12
13#ifdef __BORLANDC__
14 #pragma hdrstop
15#endif
16
17#ifndef WX_PRECOMP
18 #include "wx/app.h"
19#endif // WX_PRECOMP
20
21#include "wx/srchctrl.h"
22
23class SearchCtrlTestCase : public CppUnit::TestCase
24{
25public:
26 SearchCtrlTestCase() { }
27
28 virtual void setUp();
29 virtual void tearDown();
30
31private:
32 CPPUNIT_TEST_SUITE( SearchCtrlTestCase );
33 CPPUNIT_TEST( Focus );
34 CPPUNIT_TEST_SUITE_END();
35
36 void Focus();
37
38 wxSearchCtrl* m_search;
39
40 DECLARE_NO_COPY_CLASS(SearchCtrlTestCase)
41};
42
43// register in the unnamed registry so that these tests are run by default
44CPPUNIT_TEST_SUITE_REGISTRATION( SearchCtrlTestCase );
45
46// also include in its own registry so that these tests can be run alone
47CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( SearchCtrlTestCase, "SearchCtrlTestCase" );
48
49void SearchCtrlTestCase::setUp()
50{
51 m_search = new wxSearchCtrl(wxTheApp->GetTopWindow(), wxID_ANY);
52}
53
54void SearchCtrlTestCase::tearDown()
55{
56 delete m_search;
57 m_search = NULL;
58}
59
60void SearchCtrlTestCase::Focus()
61{
e1004654
SC
62 // TODO OS X test only passes when run solo ...
63#ifndef __WXOSX__
09ca8913
VZ
64 m_search->SetFocus();
65 CPPUNIT_ASSERT( m_search->HasFocus() );
e1004654 66#endif
09ca8913
VZ
67}
68
69#endif // wxUSE_SEARCHCTRL