Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
AlgorithmTest.h 406 B
#ifndef ALGORITHM_TEST_H_
#define ALGORITHM_TEST_H_

#include <cppunit/extensions/HelperMacros.h>

class AlgorithmTest : public CppUnit::TestFixture
{
  CPPUNIT_TEST_SUITE( AlgorithmTest );
  CPPUNIT_TEST( testExclude );
  CPPUNIT_TEST( testTransform );
  CPPUNIT_TEST_SUITE_END();

public:
  void setUp();
  void tearDown();

  void testExclude();
  void testTransform();
};

#endif  // ALGORITHM_TEST_H_