+void SpinCtrlTestCase::Initial()
+{
+ // Initial value is defined by "initial" argument which is 0 by default.
+ CPPUNIT_ASSERT_EQUAL( 0, m_spin->GetValue() );
+
+ wxWindow* const parent = m_spin->GetParent();
+
+ // Recreate the control with another "initial" to check this.
+ delete m_spin;
+ m_spin = new wxSpinCtrl(parent, wxID_ANY, "",
+ wxDefaultPosition, wxDefaultSize, 0,
+ 0, 100, 17);
+ CPPUNIT_ASSERT_EQUAL( 17, m_spin->GetValue() );
+
+ // Recreate the control with another "initial" outside of standard spin
+ // ctrl range.
+ delete m_spin;
+ m_spin = new wxSpinCtrl(parent, wxID_ANY, "",
+ wxDefaultPosition, wxDefaultSize, 0,
+ 0, 200, 150);
+ CPPUNIT_ASSERT_EQUAL( 150, m_spin->GetValue() );
+
+ // But if the text string is specified, it takes precedence.
+ delete m_spin;
+ m_spin = new wxSpinCtrl(parent, wxID_ANY, "99",
+ wxDefaultPosition, wxDefaultSize, 0,
+ 0, 100, 17);
+ CPPUNIT_ASSERT_EQUAL( 99, m_spin->GetValue() );
+}
+
+void SpinCtrlTestCase::NoEventsInCtor()
+{
+ // Verify that creating the control does not generate any events. This is
+ // unexpected and shouldn't happen.
+ wxWindow* const parent = m_spin->GetParent();
+ delete m_spin;
+ m_spin = new wxSpinCtrl;
+
+ EventCounter updated(m_spin, wxEVT_SPINCTRL);
+
+ m_spin->Create(parent, wxID_ANY, "",
+ wxDefaultPosition, wxDefaultSize, 0,
+ 0, 100, 17);
+
+ CPPUNIT_ASSERT_EQUAL(0, updated.GetCount());
+}
+