mirror of
https://github.com/glest/glest-source.git
synced 2025-09-01 04:01:47 +02:00
fix the unit tests that didn't work on some compilers handling static cast of enums in a weird way
This commit is contained in:
@@ -214,10 +214,14 @@ class XmlTreeTest : public CppUnit::TestFixture {
|
|||||||
public:
|
public:
|
||||||
|
|
||||||
void test_invalid_xml_engine_lowerbound() {
|
void test_invalid_xml_engine_lowerbound() {
|
||||||
XmlTree xml(static_cast<xml_engine_parser_type>(-1));
|
if(static_cast<xml_engine_parser_type>(XML_XERCES_ENGINE - 1) == XML_XERCES_ENGINE - 1) {
|
||||||
|
XmlTree xml(static_cast<xml_engine_parser_type>(XML_XERCES_ENGINE - 1));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
void test_invalid_xml_engine_upperbound() {
|
void test_invalid_xml_engine_upperbound() {
|
||||||
XmlTree xml(static_cast<xml_engine_parser_type>(2));
|
if(static_cast<xml_engine_parser_type>(XML_RAPIDXML_ENGINE + 1) == XML_RAPIDXML_ENGINE + 1) {
|
||||||
|
XmlTree xml(static_cast<xml_engine_parser_type>(XML_RAPIDXML_ENGINE + 1));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
void test_valid_xml_engine() {
|
void test_valid_xml_engine() {
|
||||||
XmlTree xmlInstance;
|
XmlTree xmlInstance;
|
||||||
|
Reference in New Issue
Block a user