diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2020-06-20 20:04:38 +0200 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-06-24 11:36:46 -0400 |
commit | 6246f5a4b2b4c51476ad3e60d00cfe774e5fceda (patch) | |
tree | e1797ec65feb5b689d51bed513ce694529695850 | |
parent | 9d01e324c995ba31bddf2909d86f370fdb78bc53 (diff) |
modtool: suggest descriptive test names for Python QA for C++
-rw-r--r-- | gr-utils/modtool/templates/templates.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-utils/modtool/templates/templates.py b/gr-utils/modtool/templates/templates.py index ff8d483556..7f1b0506a1 100644 --- a/gr-utils/modtool/templates/templates.py +++ b/gr-utils/modtool/templates/templates.py @@ -434,7 +434,7 @@ ${str_to_fancyc_comment(license)} namespace gr { namespace ${modname} { - BOOST_AUTO_TEST_CASE(test_${blockname}_t1) + BOOST_AUTO_TEST_CASE(test_${blockname}_replace_with_specific_test_name) { // Put test here } @@ -526,7 +526,7 @@ class qa_${blockname}(gr_unittest.TestCase): # FIXME: Test will fail until you pass sensible arguments to the constructor instance = ${blockname}() - def test_001_t(self): + def test_001_descriptive_test_name(self): # set up fg self.tb.run() # check data |