diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-01-13 16:09:10 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-01-14 13:09:08 +0000 |
commit | dd3c5d250f3cf9712e37e47851ca07401e715f13 (patch) | |
tree | 6fce0938d790736a1392e991bf002c451e976b4d /test/test_util.py | |
parent | 262e064bb6b8498adee8bc4793867b09398ee807 (diff) |
VTL: Allow running simple unittest.TestCases.
It came to my attention that Ole added a simple test in:
https://gerrit.fd.io/r/#/c/16381/ and the framework forced him
to launch an instance of VPP to test the formatting of a mac address.
This change allows the test framework to run standard unittest.TestCases
without the need to spawn a VPP instance.
Change-Id: I56651ab27c4c6bf920081a526f168a743d643201
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/test_util.py')
-rwxr-xr-x | test/test_util.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/test/test_util.py b/test/test_util.py index 01ba8623952..e7d53668e2b 100755 --- a/test/test_util.py +++ b/test/test_util.py @@ -1,12 +1,12 @@ #!/usr/bin/env python -"""Test framework utilitty functions tests""" +"""Test framework utility functions tests""" import unittest -from framework import VppTestCase, VppTestRunner +from framework import VppTestRunner from vpp_papi import mac_pton, mac_ntop -class TestUtil (VppTestCase): +class TestUtil (unittest.TestCase): """ MAC to binary and back """ def test_mac_to_binary(self): mac = 'aa:bb:cc:dd:ee:ff' @@ -15,5 +15,6 @@ class TestUtil (VppTestCase): self.assertEqual(type(mac), type(mac2)) self.assertEqual(mac2, mac) + if __name__ == '__main__': unittest.main(testRunner=VppTestRunner) |