mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-08-02 22:12:38 +00:00
22 lines
353 B
Python
22 lines
353 B
Python
![]() |
|
||
|
import unittest
|
||
|
|
||
|
from knext.client.builder import BuilderClient
|
||
|
|
||
|
|
||
|
class TestBuilderClient(unittest.TestCase):
|
||
|
"""BuilderClient unit test stubs"""
|
||
|
|
||
|
def setUp(self):
|
||
|
self.client = BuilderClient()
|
||
|
|
||
|
def tearDown(self):
|
||
|
pass
|
||
|
|
||
|
def testExecute(self):
|
||
|
"""Test execute"""
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main()
|