Last change
on this file since b9f422 was d0c7ec, checked in by Tillmann Crueger <crueger@…>, 16 years ago |
Added data structure to allow caching of derived values
|
-
Property mode
set to
100644
|
File size:
509 bytes
|
Line | |
---|
1 | /*
|
---|
2 | * CacheableTest.hpp
|
---|
3 | *
|
---|
4 | * Created on: Feb 2, 2010
|
---|
5 | * Author: crueger
|
---|
6 | */
|
---|
7 |
|
---|
8 | #ifndef CACHEABLETEST_HPP_
|
---|
9 | #define CACHEABLETEST_HPP_
|
---|
10 |
|
---|
11 | #include <cppunit/extensions/HelperMacros.h>
|
---|
12 |
|
---|
13 |
|
---|
14 | // stub classes
|
---|
15 | class threeNumbers;
|
---|
16 |
|
---|
17 | class CacheableTest : public CppUnit::TestFixture
|
---|
18 | {
|
---|
19 | CPPUNIT_TEST_SUITE( CacheableTest );
|
---|
20 | CPPUNIT_TEST ( doesRecalcTest );
|
---|
21 | CPPUNIT_TEST_SUITE_END();
|
---|
22 |
|
---|
23 | public:
|
---|
24 | void setUp();
|
---|
25 | void tearDown();
|
---|
26 |
|
---|
27 | void doesRecalcTest();
|
---|
28 | threeNumbers *numbers;
|
---|
29 | };
|
---|
30 |
|
---|
31 | #endif /* CACHEABLETEST_HPP_ */
|
---|
Note:
See
TracBrowser
for help on using the repository browser.