00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef _QA_ATSC_BASIC_TRELLIS_ENCODER_H_
00023 #define _QA_ATSC_BASIC_TRELLIS_ENCODER_H_
00024
00025 #include <cppunit/TestCase.h>
00026 #include <cppunit/TestCaller.h>
00027 #include <cppunit/TestSuite.h>
00028 #include <cppunit/TextTestResult.h>
00029
00030 #include <atsc_basic_trellis_encoder.h>
00031
00032 class qa_atsc_basic_trellis_encoder : public CppUnit::TestCase {
00033
00034 public:
00035 static void register_tests (CppUnit::TestSuite *suite)
00036 {
00037 suite->addTest (new CppUnit::TestCaller<qa_atsc_basic_trellis_encoder>
00038 ("basic_trellis_encoder: t0", &qa_atsc_basic_trellis_encoder::t0));
00039 suite->addTest (new CppUnit::TestCaller<qa_atsc_basic_trellis_encoder>
00040 ("basic_trellis_encoder: t1", &qa_atsc_basic_trellis_encoder::t1));
00041 }
00042
00043 private:
00044 atsc_basic_trellis_encoder enc;
00045
00046 void t0 ();
00047 void t1 ();
00048 };
00049
00050 #endif