Add wxUIActionSimulator::Select().

Add a helper to select an item in a wxChoice, wxComboBox, wxListBox or similar.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77662 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-09-10 16:52:01 +00:00
parent c4470b8a48
commit 1addaeaa75
6 changed files with 125 additions and 1 deletions

View File

@@ -39,7 +39,8 @@ protected:
CPPUNIT_TEST( VoidData ); \
CPPUNIT_TEST( Set ); \
CPPUNIT_TEST( SetSelection ); \
CPPUNIT_TEST( SetString )
CPPUNIT_TEST( SetString ); \
WXUISIM_TEST( SimSelect );
void Append();
void Insert();
@@ -51,6 +52,7 @@ protected:
void Set();
void SetSelection();
void SetString();
void SimSelect();
private:
wxDECLARE_NO_COPY_CLASS(ItemContainerTestCase);