aboutsummaryrefslogtreecommitdiff
path: root/src/irrlicht_changes/CGUITTFont.h
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2020-04-03 20:08:33 +0000
committersfan5 <sfan5@live.de>2020-04-03 23:15:52 +0200
commite223d7cf57390c48c29117a6f5ce5e2813357d7c (patch)
treeda44efd7b4d78c6553dcb8257bd69788981c8fbd /src/irrlicht_changes/CGUITTFont.h
parent11f452586547dd930b4e64a2d0af3c9512192970 (diff)
downloadminetest-e223d7cf57390c48c29117a6f5ce5e2813357d7c.tar.gz
minetest-e223d7cf57390c48c29117a6f5ce5e2813357d7c.tar.bz2
minetest-e223d7cf57390c48c29117a6f5ce5e2813357d7c.zip
Translated using Weblate (Hungarian)
Currently translated at 59.6% (768 of 1288 strings)
Diffstat (limited to 'src/irrlicht_changes/CGUITTFont.h')
0 files changed, 0 insertions, 0 deletions
8 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
/*
Minetest
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 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 Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#ifndef TEST_HEADER
#define TEST_HEADER

#include <exception>
#include <vector>

#include "irrlichttypes_extrabloated.h"
#include "porting.h"
#include "filesys.h"
#include "mapnode.h"

class TestFailedException : public std::exception {
};

// Runs a unit test and reports results
#define TEST(fxn, ...) do {                                                   \
	u32 t1 = porting::getTime(PRECISION_MILLI);                               \
	try {                                                                     \
		fxn(__VA_ARGS__);                                                     \
		rawstream << "[PASS] ";                                               \
	} catch (TestFailedException &e) {                                        \
		rawstream << "[FAIL] ";                                               \
		num_tests_failed++;                                                   \
	} catch (std::exception &e) {                                             \
		rawstream << "Caught unhandled exception: " << e.what() << std::endl; \
		rawstream << "[FAIL] ";                                               \
		num_tests_failed++;                                                   \
	}                                                                         \
	num_tests_run++;                                                          \
	u32 tdiff = porting::getTime(PRECISION_MILLI) - t1;                       \
	rawstream << #fxn << " - " << tdiff << "ms" << std::endl;                 \
} while (0)

// Asserts the specified condition is true, or fails the current unit test
#define UASSERT(x) do {                                         \
	if (!(x)) {                                                 \
		rawstream << "Test assertion failed: " #x << std::endl  \
			<< "    at " << fs::GetFilenameFromPath(__FILE__)   \
			<< ":" << __LINE__ << std::endl;                    \
		throw TestFailedException();                            \
	}                                                           \
} while (0)

// Asserts the specified condition is true, or fails the current unit test
// and prints the format specifier fmt
#define UTEST(x, fmt, ...) do {                                          \
	if (!(x)) {                                                          \
		char utest_buf[1024];                                            \
		snprintf(utest_buf, sizeof(utest_buf), fmt, __VA_ARGS__);        \
		rawstream << "Test assertion failed: " << utest_buf << std::endl \
			<< "    at " << fs::GetFilenameFromPath(__FILE__)            \
			<< ":" << __LINE__ << std::endl;                             \
		throw TestFailedException();                                     \
	}                                                                    \
} while (0)

// Asserts the comparison specified by CMP is true, or fails the current unit test
#define UASSERTCMP(T, CMP, actual, expected) do {                         \