]> git.saurik.com Git - wxWidgets.git/blame - tests/controls/textentrytest.h
Fix manual references to the events overview after it's page ID was changed in r58712...
[wxWidgets.git] / tests / controls / textentrytest.h
CommitLineData
f0f6a32d
VZ
1///////////////////////////////////////////////////////////////////////////////
2// Name: tests/controls/textentrytest.h
3// Purpose: Base class implementing wxTextEntry unit tests
4// Author: Vadim Zeitlin
5// Created: 2008-09-19 (extracted from textctrltest.cpp)
6// RCS-ID: $Id$
7// Copyright: (c) 2007, 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8///////////////////////////////////////////////////////////////////////////////
9
10#ifndef _WX_TESTS_CONTROLS_TEXTENTRYTEST_H_
11#define _WX_TESTS_CONTROLS_TEXTENTRYTEST_H_
12
13// ----------------------------------------------------------------------------
14// abstract base class testing wxTextEntry methods
15// ----------------------------------------------------------------------------
16
17class TextEntryTestCase : public CppUnit::TestCase
18{
19public:
20 TextEntryTestCase() { }
21
22protected:
23 // this function must be overridden by the derived classes to return the
24 // text entry object we're testing, typically this is done by creating a
25 // control implementing wxTextEntry interface in setUp() virtual method and
26 // just returning it from here
27 virtual wxTextEntry *GetTestEntry() const = 0;
28
29 // and this one must be overridden to return the window which implements
30 // wxTextEntry interface -- usually it will return the same pointer as
31 // GetTestEntry(), just as a different type
32 virtual wxWindow *GetTestWindow() const = 0;
33
34 // this should be inserted in the derived class CPPUNIT_TEST_SUITE
35 // definition to run all wxTextEntry tests as part of it
36 #define wxTEXT_ENTRY_TESTS() \
37 CPPUNIT_TEST( SetValue ); \
38 CPPUNIT_TEST( TextChangeEvents ); \
39 CPPUNIT_TEST( Selection ); \
059979d8
VZ
40 CPPUNIT_TEST( InsertionPoint ); \
41 CPPUNIT_TEST( Replace )
f0f6a32d
VZ
42
43 void SetValue();
44 void TextChangeEvents();
45 void Selection();
46 void InsertionPoint();
059979d8 47 void Replace();
f0f6a32d
VZ
48
49private:
50 // Selection() test helper: verify that selection is as described by the
51 // function parameters
52 void AssertSelection(int from, int to, const char *sel);
53
dc7f9c9c
VZ
54 // helper of AssertSelection(): check that the text selected in the control
55 // is the given one
56 //
57 // this is necessary to disable testing this in wxComboBox test as it
58 // doesn't provide any way to access the string selection directly, its
59 // GetStringSelection() method returns the currently selected string in the
60 // wxChoice part of the control, not the selected text
61 virtual void CheckStringSelection(const char *sel);
62
f0f6a32d
VZ
63 DECLARE_NO_COPY_CLASS(TextEntryTestCase)
64};
65
66#endif // _WX_TESTS_CONTROLS_TEXTENTRYTEST_H_