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