From e50fbe8c5411700ee4c5dc09e478caafad96f95d Mon Sep 17 00:00:00 2001 From: Martin Braun <martin.braun@ettus.com> Date: Sun, 6 May 2018 22:18:04 -0700 Subject: digital: Replace QA test framework w/ Boost UTF --- gr-digital/lib/qa_header_buffer.h | 59 --------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 gr-digital/lib/qa_header_buffer.h (limited to 'gr-digital/lib/qa_header_buffer.h') diff --git a/gr-digital/lib/qa_header_buffer.h b/gr-digital/lib/qa_header_buffer.h deleted file mode 100644 index 48ab086293..0000000000 --- a/gr-digital/lib/qa_header_buffer.h +++ /dev/null @@ -1,59 +0,0 @@ -/* -*- c++ -*- */ -/* - * Copyright 2016 Free Software Foundation, Inc. - * - * This file is part of GNU Radio - * - * GNU Radio is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 3, or (at your option) - * any later version. - * - * GNU Radio is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with GNU Radio; see the file COPYING. If not, write to - * the Free Software Foundation, Inc., 51 Franklin Street, - * Boston, MA 02110-1301, USA. - */ - -#ifndef _QA_DIGITAL_HEADER_BUFFER_H_ -#define _QA_DIGITAL_HEADER_BUFFER_H_ - -#include <cppunit/extensions/HelperMacros.h> -#include <cppunit/TestCase.h> - -class qa_header_buffer : public CppUnit::TestCase -{ - CPPUNIT_TEST_SUITE(qa_header_buffer); - CPPUNIT_TEST(test_add8); - CPPUNIT_TEST(test_add16); - CPPUNIT_TEST(test_add32); - CPPUNIT_TEST(test_add64); - CPPUNIT_TEST(test_add_many); - - CPPUNIT_TEST(test_extract8); - CPPUNIT_TEST(test_extract16); - CPPUNIT_TEST(test_extract32); - CPPUNIT_TEST(test_extract64); - CPPUNIT_TEST(test_extract_many); - CPPUNIT_TEST_SUITE_END(); - - private: - void test_add8(); - void test_add16(); - void test_add32(); - void test_add64(); - void test_add_many(); - - void test_extract8(); - void test_extract16(); - void test_extract32(); - void test_extract64(); - void test_extract_many(); -}; - -#endif /* _QA_DIGITAL_HEADER_BUFFER_H_ */ -- cgit v1.2.3