00001 #ifdef __UTEST
00002
00003 #ifndef ZTT_DCS_COMMANDTEST_HPP
00004 #define ZTT_DCS_COMMANDTEST_HPP
00005
00006 #include "FeePacket.hpp"
00007
00008 namespace ztt { namespace dcs {
00009
00015 class FeePacketTest {
00016 private:
00017 FeePacket* mpFeePacket;
00018
00019
00020 public:
00021 void tearDown();
00022 FeePacketTest();
00023 bool testGetID();
00024 bool testMarshall();
00025 bool testFlags();
00026 bool testValid();
00027 bool testUnmarshall();
00028 bool testGetPayload();
00029 bool testGetPayloadSize();
00030 bool testGetFeePacketSize();
00031 bool testAll();
00032
00033 };
00034
00035 } }
00036
00037 #endif
00038
00039 #endif