Go to the documentation of this file.00001 #include "../utest.h"
00002
00003 using namespace std;
00004 using namespace PointMatcherSupport;
00005
00006
00007
00008
00009 TEST(Inspectors, PerformanceInspector)
00010 {
00011 PM::Inspector* performances =
00012 PM::get().REG(Inspector).create(
00013 "PerformanceInspector", map_list_of
00014 ("baseFileName", "/tmp/utest_performances")
00015 ("dumpPerfOnExit", "1")
00016 )
00017 ;
00018
00019
00020 }
00021
00022 TEST(Inspectors, VTKFileInspector)
00023 {
00024 PM::Inspector* vtkFile =
00025 PM::get().REG(Inspector).create(
00026 "VTKFileInspector", map_list_of
00027 ("baseFileName", "/tmp/utest_vtk")
00028 ("dumpPerfOnExit", "1")
00029 )
00030 ;
00031
00032 }