diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-09-30 21:01:23 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-09-30 21:01:23 -0400 |
commit | f37d62121f091b16fd07b418fef5f8f244c49b6f (patch) | |
tree | 579c6e308286b1e05b2d7f1cf8d5429401113293 /gr-howto-write-a-block/lib/qa_square2_ff.h | |
parent | 505bab9a6c43ef7fd3c815fa92bb90a05a9f2fac (diff) |
howto: moving C++ QA code to cppunit.
Diffstat (limited to 'gr-howto-write-a-block/lib/qa_square2_ff.h')
-rw-r--r-- | gr-howto-write-a-block/lib/qa_square2_ff.h | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/gr-howto-write-a-block/lib/qa_square2_ff.h b/gr-howto-write-a-block/lib/qa_square2_ff.h new file mode 100644 index 0000000000..5260cabda9 --- /dev/null +++ b/gr-howto-write-a-block/lib/qa_square2_ff.h @@ -0,0 +1,46 @@ +/* -*- c++ -*- */ +/* + * Copyright 2012 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_SQUARE2_FF_H_ +#define _QA_SQUARE2_FF_H_ + +#include <cppunit/extensions/HelperMacros.h> +#include <cppunit/TestCase.h> + +namespace gr { + namespace howto { + + class qa_square2_ff : public CppUnit::TestCase + { + public: + CPPUNIT_TEST_SUITE(qa_square2_ff); + CPPUNIT_TEST(t1); + CPPUNIT_TEST_SUITE_END(); + + private: + void t1(); + }; + + } /* namespace howto */ +} /* namespace gr */ + +#endif /* _QA_SQUARE2_FF_H_ */ |