diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2020-11-16 16:54:14 -0500 |
---|---|---|
committer | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2020-11-17 00:51:50 +0000 |
commit | ff1f089c3a395d9e519bbbf91e3a30737173b447 (patch) | |
tree | 5b1a8adb84dc5bf257918d818b4c11cada427dec /test/test_crypto.py | |
parent | b5c6d08f037c277a961a40edaddf6a8d8cb9d55b (diff) |
tests: move crypto tests to src/vnet/crypto/test
- Refactor make test code to be co-located with
the vpp feature source code
Type: test
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Change-Id: I089bda44c31cbb217132e5b385cd9ea96ea5239e
Diffstat (limited to 'test/test_crypto.py')
-rw-r--r-- | test/test_crypto.py | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/test/test_crypto.py b/test/test_crypto.py deleted file mode 100644 index aa62dba1bab..00000000000 --- a/test/test_crypto.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python3 - -import unittest - -from framework import VppTestCase, VppTestRunner - - -class TestCrypto(VppTestCase): - """ Crypto Test Case """ - - @classmethod - def setUpClass(cls): - super(TestCrypto, cls).setUpClass() - - @classmethod - def tearDownClass(cls): - super(TestCrypto, cls).tearDownClass() - - def test_crypto(self): - """ Crypto Unit Tests """ - error = self.vapi.cli("test crypto") - - if error: - self.logger.critical(error) - self.assertNotIn("FAIL", error) - -if __name__ == '__main__': - unittest.main(testRunner=VppTestRunner) |