#include "boost/test/unit_test.hpp"
#include "canvas/Utilities/uniform_type_name.h"
#include <map>
#include <string>
#include <vector>
Go to the source code of this file.
#define BOOST_TEST_MODULE (uniform_type_name_test) |
BOOST_AUTO_TEST_CASE |
( |
allocator_removal |
| ) |
|
BOOST_AUTO_TEST_CASE |
( |
comparator_removal |
| ) |
|
Definition at line 34 of file uniform_type_name_test.cc.
36 testit(
typeid(std::map<std::string, std::string>),
37 "std::map<std::string,std::string>");
BOOST_AUTO_TEST_CASE |
( |
int_type_names |
| ) |
|
Definition at line 40 of file uniform_type_name_test.cc.
42 testit(
typeid(
unsigned long long),
"ULong64_t");
43 testit(
typeid(
long long),
"Long64_t");
45 "MyUIntTemplate_t<3,std::string>");
47 "MyULongTemplate_t<4,std::string>");