GCC Code Coverage Report
Directory: ./ Exec Total Coverage
File: tests/dummy.cpp Lines: 5 5 100.0 %
Date: 2023-03-13 12:09:37 Branches: 0 0 - %

Line Branch Exec Source
1
/*
2
 * Copyright 2010,
3
 * François Bleibel,
4
 * Olivier Stasse,
5
 *
6
 * CNRS/AIST
7
 *
8
 */
9
10
#include <iostream>
11
#include <sot/core/debug.hh>
12
13
1
int main(int, char **) {
14
1
  dynamicgraph::sot::sotDEBUGFLOW.openFile();
15
1
  dynamicgraph::sot::sotDEBUGFLOW.trace("test test test");
16
17
1
  std::cout << "It works!" << std::endl;
18
1
  return 0;
19
}