00001 00009 /***************************************************************************** 00010 ** Includes 00011 *****************************************************************************/ 00012 00013 #include <iostream> 00014 #include <gtest/gtest.h> 00015 #include "../../include/ecl/config/endianness.hpp" 00016 00017 /***************************************************************************** 00018 ** Tests 00019 *****************************************************************************/ 00020 /* 00021 * Doesn't matter what the result is, just provide coverage. 00022 * compile time if they aren't. 00023 */ 00024 TEST(TypeTests,fundamentals) { 00025 bool result = ecl::is_big_endian(); 00026 result = false; 00027 SUCCEED(); 00028 } 00029 00030 /***************************************************************************** 00031 ** Main 00032 *****************************************************************************/ 00033 00034 int main(int argc, char **argv) { 00035 testing::InitGoogleTest(&argc,argv); 00036 return RUN_ALL_TESTS(); 00037 } 00038 00039