232fdc630c
Add a lot of tests for many wx GUI classes. Add tests using the new wxUIActionSimulator class but disable them under OS X as too many of them currently fail there. Refactor the test suite to make organizing the existing tests and adding the new ones easier. Improve documentation using the information gathered while testing the classes. Also update the documentation of the testing system itself. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65386 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
119 lines
2.7 KiB
C++
119 lines
2.7 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: tests/controls/listviewtest.cpp
|
|
// Purpose: wxListView unit test
|
|
// Author: Steven Lamerton
|
|
// Created: 2010-07-10
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2010 Steven Lamerton
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "testprec.h"
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/app.h"
|
|
#endif // WX_PRECOMP
|
|
|
|
#include "wx/listctrl.h"
|
|
#include "listbasetest.h"
|
|
|
|
class ListViewTestCase : public ListBaseTestCase, public CppUnit::TestCase
|
|
{
|
|
public:
|
|
ListViewTestCase() { }
|
|
|
|
virtual void setUp();
|
|
virtual void tearDown();
|
|
|
|
virtual wxListCtrl *GetList() const { return m_list; }
|
|
|
|
private:
|
|
CPPUNIT_TEST_SUITE( ListViewTestCase );
|
|
wxLIST_BASE_TESTS();
|
|
CPPUNIT_TEST( Selection );
|
|
CPPUNIT_TEST( Focus );
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
void Selection();
|
|
void Focus();
|
|
|
|
wxListView *m_list;
|
|
|
|
DECLARE_NO_COPY_CLASS(ListViewTestCase)
|
|
};
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( ListViewTestCase );
|
|
|
|
// also include in it's own registry so that these tests can be run alone
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ListViewTestCase, "ListViewTestCase" );
|
|
|
|
void ListViewTestCase::setUp()
|
|
{
|
|
m_list = new wxListView(wxTheApp->GetTopWindow());
|
|
m_list->SetWindowStyle(wxLC_REPORT);
|
|
m_list->SetSize(400, 200);
|
|
}
|
|
|
|
void ListViewTestCase::tearDown()
|
|
{
|
|
wxDELETE(m_list);
|
|
}
|
|
|
|
void ListViewTestCase::Selection()
|
|
{
|
|
m_list->InsertColumn(0, "Column 0");
|
|
|
|
m_list->InsertItem(0, "Item 0");
|
|
m_list->InsertItem(1, "Item 1");
|
|
m_list->InsertItem(2, "Item 2");
|
|
m_list->InsertItem(3, "Item 3");
|
|
|
|
m_list->Select(0);
|
|
m_list->Select(2);
|
|
m_list->Select(3);
|
|
|
|
CPPUNIT_ASSERT(m_list->IsSelected(0));
|
|
CPPUNIT_ASSERT(!m_list->IsSelected(1));
|
|
|
|
long sel = m_list->GetFirstSelected();
|
|
|
|
CPPUNIT_ASSERT_EQUAL(0, sel);
|
|
|
|
sel = m_list->GetNextSelected(sel);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(2, sel);
|
|
|
|
sel = m_list->GetNextSelected(sel);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(3, sel);
|
|
|
|
sel = m_list->GetNextSelected(sel);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(-1, sel);
|
|
|
|
m_list->Select(0, false);
|
|
|
|
CPPUNIT_ASSERT(!m_list->IsSelected(0));
|
|
CPPUNIT_ASSERT_EQUAL(2, m_list->GetFirstSelected());
|
|
}
|
|
|
|
void ListViewTestCase::Focus()
|
|
{
|
|
m_list->InsertColumn(0, "Column 0");
|
|
|
|
m_list->InsertItem(0, "Item 0");
|
|
m_list->InsertItem(1, "Item 1");
|
|
m_list->InsertItem(2, "Item 2");
|
|
m_list->InsertItem(3, "Item 3");
|
|
|
|
CPPUNIT_ASSERT_EQUAL(-1, m_list->GetFocusedItem());
|
|
|
|
m_list->Focus(0);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(0, m_list->GetFocusedItem());
|
|
}
|