mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-07 07:04:14 +00:00
24 lines
663 B
Python
24 lines
663 B
Python
|
import unittest
|
||
|
|
||
|
from .FeelDecisionRunner import FeelDecisionRunner
|
||
|
|
||
|
|
||
|
class FeelStringDecisionTestClass(unittest.TestCase):
|
||
|
"""
|
||
|
Doc: https://docs.camunda.org/manual/7.7/user-guide/dmn-engine/
|
||
|
"""
|
||
|
|
||
|
@classmethod
|
||
|
def setUpClass(cls):
|
||
|
cls.runner = FeelDecisionRunner('kwargs_parameter_feel.dmn')
|
||
|
|
||
|
def test_string_decision_string_output1(self):
|
||
|
res = self.runner.decide({"Gender":'m'})
|
||
|
self.assertEqual(res.description, 'm Row Annotation')
|
||
|
|
||
|
def suite():
|
||
|
return unittest.TestLoader().loadTestsFromTestCase(FeelStringDecisionTestClass)
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.TextTestRunner(verbosity=2).run(suite())
|