aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit')
-rw-r--r--tests/unit/cmd/commands/test_testcase.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/unit/cmd/commands/test_testcase.py b/tests/unit/cmd/commands/test_testcase.py
index 351e5e79f..c55c367d0 100644
--- a/tests/unit/cmd/commands/test_testcase.py
+++ b/tests/unit/cmd/commands/test_testcase.py
@@ -17,6 +17,10 @@ import unittest
from yardstick.cmd.commands import testcase
from yardstick.cmd.commands.testcase import TestcaseCommands
+class Arg(object):
+ def __init__(self):
+ self.casename=('opnfv_yardstick_tc001',)
+
class TestcaseCommandsUT(unittest.TestCase):
def test_do_list(self):
@@ -24,4 +28,9 @@ class TestcaseCommandsUT(unittest.TestCase):
result = t.do_list("")
self.assertEqual(result, True)
+ def test_do_show(self):
+ t = testcase.TestcaseCommands()
+ casename = Arg()
+ result = t.do_show(casename)
+ self.assertEqual(result, True)