cgma
|
00001 00002 #ifndef TEST_UTILITIES_HPP 00003 #define TEST_UTILITIES_HPP 00004 00005 #include "CubitBox.hpp" 00006 #include <string> 00007 00008 // function to get the path to a data file in the data directory 00009 std::string data_file(char* filename); 00010 00011 // compare if 2 CubitBoxes are identical 00012 bool cubit_box_identical(const CubitBox& box1, const CubitBox& box2, double tol, 00013 bool print_data = false); 00014 00015 00016 00017 #endif 00018