source: src/Patterns/unittests/CacheableUnitTest.hpp@ a80f419

Last change on this file since a80f419 was a80f419, checked in by Frederik Heber <heber@…>, 15 years ago

First version.

Everything was extracted from project MoleCuilder and adapted such that it
runs on its own (i.e. new configure.ac, Makefile.am structure, stuff for
libtool versioning, ...)

  • Property mode set to 100644
File size: 525 bytes
Line 
1/*
2 * CacheableUnitTest.hpp
3 *
4 * Created on: Feb 2, 2010
5 * Author: crueger
6 */
7
8#ifndef CACHEABLEUNITTEST_HPP_
9#define CACHEABLEUNITTEST_HPP_
10
11#include <cppunit/extensions/HelperMacros.h>
12
13
14// stub classes
15class threeNumbers;
16
17class CacheableTest : public CppUnit::TestFixture
18{
19 CPPUNIT_TEST_SUITE( CacheableTest );
20 CPPUNIT_TEST ( doesRecalcTest );
21 CPPUNIT_TEST_SUITE_END();
22
23public:
24 void setUp();
25 void tearDown();
26
27 void doesRecalcTest();
28 threeNumbers *numbers;
29};
30
31#endif /* CACHEABLEUNITTEST_HPP_ */
Note: See TracBrowser for help on using the repository browser.