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_SLIDING_CORRELATOR_H_
00024
#define _QA_ATSC_SLIDING_CORRELATOR_H_
00025
00026
#include <cppunit/TestCase.h>
00027
#include <cppunit/TestCaller.h>
00028
#include <cppunit/TestSuite.h>
00029
#include <cppunit/TextTestResult.h>
00030
#include <stdio.h>
00031
00032
#include <atsc_sliding_correlator.h>
00033
00034 class qa_atsc_sliding_correlator :
public CppUnit::TestCase {
00035
00036
public:
00037
00038 void setUp (
void)
00039 {
00040
corr.
reset ();
00041 }
00042
00043 static void register_tests (CppUnit::TestSuite *suite)
00044 {
00045 suite->addTest (
new CppUnit::TestCaller<qa_atsc_sliding_correlator>
00046 (
"sliding_correlator: t0", &
qa_atsc_sliding_correlator::t0));
00047 }
00048
00049
private:
00050 atsc_sliding_correlator corr;
00051
00052
void t0 ();
00053 };
00054
00055
00056
#endif