|
Last change
on this file since 3efb4a was 4bc937, checked in by Frederik Heber <heber@…>, 16 years ago |
|
Member functions of Vector class may be called while going over an iteration of a list containing Vectors, thanks to member function pointers.
- Unit test ActOnAllTest is the basic class for showing, how we can use any member function of Vector:: and make it act globally over a list of vectors.
- this is incorporated into the definition of class molecule for the vectors contained in the atoms chained list.
|
-
Property mode
set to
100644
|
|
File size:
834 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | * ActOnAllUnitTest.hpp
|
|---|
| 3 | *
|
|---|
| 4 | * Created on: 04.10.2009
|
|---|
| 5 | * Author: FrederikHeber
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #ifndef ACTONALLUNITTEST_HPP_
|
|---|
| 9 | #define ACTONALLUNITTEST_HPP_
|
|---|
| 10 |
|
|---|
| 11 | #include <cppunit/extensions/HelperMacros.h>
|
|---|
| 12 |
|
|---|
| 13 | #include "ActOnAlltest.hpp"
|
|---|
| 14 |
|
|---|
| 15 | /********************************************** Test classes **************************************/
|
|---|
| 16 |
|
|---|
| 17 | class ActOnAllTest : public CppUnit::TestFixture
|
|---|
| 18 | {
|
|---|
| 19 | CPPUNIT_TEST_SUITE( ActOnAllTest) ;
|
|---|
| 20 | CPPUNIT_TEST ( AddSubtractTest );
|
|---|
| 21 | CPPUNIT_TEST ( ScaleTest );
|
|---|
| 22 | CPPUNIT_TEST ( NormalizeTest );
|
|---|
| 23 | CPPUNIT_TEST_SUITE_END();
|
|---|
| 24 |
|
|---|
| 25 | public:
|
|---|
| 26 | void setUp();
|
|---|
| 27 | void tearDown();
|
|---|
| 28 | void AddSubtractTest();
|
|---|
| 29 | void ScaleTest();
|
|---|
| 30 | void NormalizeTest();
|
|---|
| 31 |
|
|---|
| 32 | private:
|
|---|
| 33 | class VectorList VL;
|
|---|
| 34 | class VectorList Ref;
|
|---|
| 35 | };
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 | #endif /* ACTONALLUNITTEST_HPP_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.