added tests for wx's CRT wrappers (so far only wxGetEnv,wxSetEnv)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27604 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
65
tests/strings/crt.cpp
Normal file
65
tests/strings/crt.cpp
Normal file
@@ -0,0 +1,65 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Name: tests/strings/crt.cpp
|
||||
// Purpose: Test for wx C runtime functions wrappers
|
||||
// Author: Vaclav Slavik
|
||||
// Created: 2004-06-03
|
||||
// RCS-ID: $Id$
|
||||
// Copyright: (c) 2004 Vaclav Slavik
|
||||
// Licence: wxWindows licence
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// headers
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
#include "wx/wxprec.h"
|
||||
|
||||
#ifdef __BORLANDC__
|
||||
#pragma hdrstop
|
||||
#endif
|
||||
|
||||
#ifndef WX_PRECOMP
|
||||
#include "wx/wx.h"
|
||||
#endif // WX_PRECOMP
|
||||
|
||||
#include "wx/textfile.h"
|
||||
|
||||
#include "wx/cppunit.h"
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// test class
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
class CrtTestCase : public CppUnit::TestCase
|
||||
{
|
||||
public:
|
||||
CrtTestCase() {}
|
||||
|
||||
private:
|
||||
CPPUNIT_TEST_SUITE( CrtTestCase );
|
||||
CPPUNIT_TEST( SetGetEnv );
|
||||
CPPUNIT_TEST_SUITE_END();
|
||||
|
||||
void SetGetEnv();
|
||||
|
||||
DECLARE_NO_COPY_CLASS(CrtTestCase)
|
||||
};
|
||||
|
||||
// register in the unnamed registry so that these tests are run by default
|
||||
CPPUNIT_TEST_SUITE_REGISTRATION( CrtTestCase );
|
||||
|
||||
// also include in it's own registry so that these tests can be run alone
|
||||
CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( CrtTestCase, "CrtTestCase" );
|
||||
|
||||
void CrtTestCase::SetGetEnv()
|
||||
{
|
||||
wxString val;
|
||||
wxSetEnv(_T("TESTVAR"), _T("value"));
|
||||
CPPUNIT_ASSERT( wxGetEnv(_T("TESTVAR"), &val) == true );
|
||||
CPPUNIT_ASSERT( val == _T("value") );
|
||||
wxSetEnv(_T("TESTVAR"), _T("something else"));
|
||||
CPPUNIT_ASSERT( wxGetEnv(_T("TESTVAR"), &val) );
|
||||
CPPUNIT_ASSERT( val == _T("something else") );
|
||||
CPPUNIT_ASSERT( wxUnsetEnv(_T("TESTVAR")) );
|
||||
CPPUNIT_ASSERT( wxGetEnv(_T("TESTVAR"), NULL) == false );
|
||||
}
|
Reference in New Issue
Block a user