mirror of
https://github.com/OpenSPG/openspg.git
synced 2025-08-02 14:02:15 +00:00
21 lines
352 B
Python
21 lines
352 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()
|