File: CppUnitTestSuite.h

package info (click to toggle)
cppunit 1.8.0-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,664 kB
  • ctags: 1,779
  • sloc: cpp: 10,756; sh: 7,005; makefile: 362; ansic: 266
file content (16 lines) | stat: -rw-r--r-- 304 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef CPPUNITTESTSUITE_H
#define CPPUNITTESTSUITE_H

#include <cppunit/TestSuite.h>


/*! \class CppUnitTestSuite
 * \brief This class is a test suite that includes all CppUnit unit tests.
 */
namespace CppUnitTest
{
  CppUnit::Test *suite();
} // namespace CppUnitTest


#endif  // CPPUNITTESTSUITE_H