mirror of
https://github.com/hb9fxq/gr-digitalhf
synced 2024-11-18 10:47:46 +00:00
26 lines
457 B
C++
26 lines
457 B
C++
/* -*- c++ -*- */
|
|
/*
|
|
* Copyright 2020 hcab14@gmail.com.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <digitalhf/doppler_correction_cc.h>
|
|
#include <gnuradio/attributes.h>
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
namespace gr {
|
|
namespace digitalhf {
|
|
|
|
BOOST_AUTO_TEST_CASE(test_doppler_correction_cc_t1)
|
|
{
|
|
// Put test here
|
|
}
|
|
|
|
} /* namespace digitalhf */
|
|
} /* namespace gr */
|