2018-11-12 17:28:02 +00:00
|
|
|
/* -*- c++ -*- */
|
|
|
|
/*
|
2020-02-19 13:11:45 +00:00
|
|
|
* Copyright 2020 hcab14@gmail.com.
|
2018-11-12 17:28:02 +00:00
|
|
|
*
|
2020-02-19 13:11:45 +00:00
|
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
2018-11-12 17:28:02 +00:00
|
|
|
*/
|
|
|
|
|
2020-02-19 13:11:45 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
2018-11-12 17:28:02 +00:00
|
|
|
|
|
|
|
#include <digitalhf/doppler_correction_cc.h>
|
2020-02-19 13:11:45 +00:00
|
|
|
#include <gnuradio/attributes.h>
|
|
|
|
#include <boost/test/unit_test.hpp>
|
2018-11-12 17:28:02 +00:00
|
|
|
|
|
|
|
namespace gr {
|
2020-02-19 13:11:45 +00:00
|
|
|
namespace digitalhf {
|
2018-11-12 17:28:02 +00:00
|
|
|
|
2020-02-19 13:11:45 +00:00
|
|
|
BOOST_AUTO_TEST_CASE(test_doppler_correction_cc_t1)
|
|
|
|
{
|
|
|
|
// Put test here
|
|
|
|
}
|
2018-11-12 17:28:02 +00:00
|
|
|
|
2020-02-19 13:11:45 +00:00
|
|
|
} /* namespace digitalhf */
|
2018-11-12 17:28:02 +00:00
|
|
|
} /* namespace gr */
|