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
112 lines
2.5 KiB
C++
112 lines
2.5 KiB
C++
///////////////////////////////////////////////////////////////////////////////
|
|
// Name: tests/controls/gaugetest.cpp
|
|
// Purpose: wxGauge unit test
|
|
// Author: Steven Lamerton
|
|
// Created: 2010-07-15
|
|
// RCS-ID: $Id$
|
|
// Copyright: (c) 2010 Steven Lamerton
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "testprec.h"
|
|
|
|
#if wxUSE_GAUGE
|
|
|
|
#ifdef __BORLANDC__
|
|
#pragma hdrstop
|
|
#endif
|
|
|
|
#ifndef WX_PRECOMP
|
|
#include "wx/app.h"
|
|
#include "wx/gauge.h"
|
|
#endif // WX_PRECOMP
|
|
|
|
class GaugeTestCase : public CppUnit::TestCase
|
|
{
|
|
public:
|
|
GaugeTestCase() { }
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
private:
|
|
CPPUNIT_TEST_SUITE( GaugeTestCase );
|
|
CPPUNIT_TEST( Direction );
|
|
CPPUNIT_TEST( Range );
|
|
CPPUNIT_TEST( Value );
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
void Direction();
|
|
void Range();
|
|
void Value();
|
|
|
|
wxGauge* m_gauge;
|
|
|
|
DECLARE_NO_COPY_CLASS(GaugeTestCase)
|
|
};
|
|
|
|
// register in the unnamed registry so that these tests are run by default
|
|
CPPUNIT_TEST_SUITE_REGISTRATION( GaugeTestCase );
|
|
|
|
// also include in it's own registry so that these tests can be run alone
|
|
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( GaugeTestCase, "GaugeTestCase" );
|
|
|
|
void GaugeTestCase::setUp()
|
|
{
|
|
m_gauge = new wxGauge(wxTheApp->GetTopWindow(), wxID_ANY, 100);
|
|
}
|
|
|
|
void GaugeTestCase::tearDown()
|
|
{
|
|
wxTheApp->GetTopWindow()->DestroyChildren();
|
|
}
|
|
|
|
void GaugeTestCase::Direction()
|
|
{
|
|
//We should default to a horizontal gauge
|
|
CPPUNIT_ASSERT(!m_gauge->IsVertical());
|
|
|
|
wxDELETE(m_gauge);
|
|
m_gauge = new wxGauge(wxTheApp->GetTopWindow(), wxID_ANY, 100,
|
|
wxDefaultPosition, wxDefaultSize, wxGA_VERTICAL);
|
|
|
|
CPPUNIT_ASSERT(m_gauge->IsVertical());
|
|
|
|
wxDELETE(m_gauge);
|
|
m_gauge = new wxGauge(wxTheApp->GetTopWindow(), wxID_ANY, 100,
|
|
wxDefaultPosition, wxDefaultSize, wxGA_HORIZONTAL);
|
|
|
|
CPPUNIT_ASSERT(!m_gauge->IsVertical());
|
|
}
|
|
|
|
void GaugeTestCase::Range()
|
|
{
|
|
CPPUNIT_ASSERT_EQUAL(100, m_gauge->GetRange());
|
|
|
|
m_gauge->SetRange(50);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(50, m_gauge->GetRange());
|
|
|
|
m_gauge->SetRange(0);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(0, m_gauge->GetRange());
|
|
}
|
|
|
|
void GaugeTestCase::Value()
|
|
{
|
|
CPPUNIT_ASSERT_EQUAL(0, m_gauge->GetValue());
|
|
|
|
m_gauge->SetValue(50);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(50, m_gauge->GetValue());
|
|
|
|
m_gauge->SetValue(0);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(0, m_gauge->GetValue());
|
|
|
|
m_gauge->SetValue(100);
|
|
|
|
CPPUNIT_ASSERT_EQUAL(100, m_gauge->GetValue());
|
|
}
|
|
|
|
#endif //wxUSE_GAUGE
|