2003-08-08 18:31:48 +00:00
|
|
|
// intstring_test.cpp (IntToString() test functions)
|
|
|
|
|
//
|
|
|
|
|
// The WorldForge Project
|
|
|
|
|
// Copyright (C) 2002 The WorldForge Project
|
|
|
|
|
//
|
|
|
|
|
// This program is free software; you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
|
// along with this program; if not, write to the Free Software
|
2016-05-16 14:12:35 +02:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2003-08-08 18:31:48 +00:00
|
|
|
//
|
|
|
|
|
// For information about WorldForge and its authors, please contact
|
|
|
|
|
// the Worldforge Web Site at http://www.worldforge.org.
|
|
|
|
|
|
|
|
|
|
// Author: Ron Steinke
|
|
|
|
|
// Created: 2002-1-28
|
|
|
|
|
|
2008-11-10 17:35:11 +00:00
|
|
|
#ifdef NDEBUG
|
|
|
|
|
#undef NDEBUG
|
|
|
|
|
#endif
|
|
|
|
|
#ifndef DEBUG
|
|
|
|
|
#define DEBUG
|
|
|
|
|
#endif
|
|
|
|
|
|
2019-10-02 16:32:47 +02:00
|
|
|
#include "wfmath/int_to_string.h"
|
|
|
|
|
#include "wfmath/randgen.h"
|
2003-08-08 18:31:48 +00:00
|
|
|
|
|
|
|
|
#include <climits>
|
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
2009-01-07 01:26:09 +00:00
|
|
|
#include <cassert>
|
|
|
|
|
|
2003-08-08 18:31:48 +00:00
|
|
|
using namespace WFMath;
|
|
|
|
|
|
|
|
|
|
static void TestConvert()
|
|
|
|
|
{
|
|
|
|
|
for(unsigned i = 0; i < 100; ++i) {
|
2003-08-08 21:25:29 +00:00
|
|
|
unsigned long val = MTRand::instance.randInt();
|
2003-08-08 18:31:48 +00:00
|
|
|
assert(strtoul(IntToString(val).c_str(), 0, 0) == val);
|
|
|
|
|
// This assignment changes the value, but we just want a
|
|
|
|
|
// random number, so we don't care. Large unsigned ints will
|
|
|
|
|
// provide us negative numbers for testing.
|
2003-08-08 21:25:29 +00:00
|
|
|
long val2 = (long) val;
|
2006-08-16 00:05:31 +00:00
|
|
|
assert(atol(IntToString(val2).c_str()) == val2);
|
2003-08-08 18:31:48 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
{
|
|
|
|
|
TestConvert();
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|