mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-07 07:04:14 +00:00
git-subtree-dir: SpiffWorkflow git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
28 lines
882 B
Python
28 lines
882 B
Python
import unittest
|
|
|
|
from .FeelDecisionRunner import FeelDecisionRunner
|
|
|
|
class FeelListDecisionTestClass(unittest.TestCase):
|
|
"""
|
|
Doc: https://docs.camunda.org/manual/7.7/user-guide/dmn-engine/
|
|
"""
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.runner = FeelDecisionRunner('list_decision_feel.dmn')
|
|
|
|
def test_string_decision_string_output1(self):
|
|
res = self.runner.decide({'allergies':["PEANUTS", "SPAM"]})
|
|
self.assertEqual(res.description, 'They are allergic to peanuts')
|
|
|
|
def test_string_decision_string_output1(self):
|
|
res = self.runner.decide({'allergies':["SPAM", "SPAM"]})
|
|
self.assertEqual(res.description, 'They are not allergic to peanuts')
|
|
|
|
|
|
def suite():
|
|
return unittest.TestLoader().loadTestsFromTestCase(FeelListDecisionTestClass)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.TextTestRunner(verbosity=2).run(suite())
|