wxWidgets/tests/controls/gaugetest.cpp
Vadim Zeitlin 3f66f6a5b3 Remove all lines containing cvs/svn "$Id$" keyword.
This keyword is not expanded by Git which means it's not replaced with the
correct revision value in the releases made using git-based scripts and it's
confusing to have lines with unexpanded "$Id$" in the released files. As
expanding them with Git is not that simple (it could be done with git archive
and export-subst attribute) and there are not many benefits in having them in
the first place, just remove all these lines.

If nothing else, this will make an eventual transition to Git simpler.

Closes #14487.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
2013-07-26 16:02:46 +00:00

111 lines
2.5 KiB
C++

///////////////////////////////////////////////////////////////////////////////
// Name: tests/controls/gaugetest.cpp
// Purpose: wxGauge unit test
// Author: Steven Lamerton
// Created: 2010-07-15
// 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 its 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