import { executeTest } from './decisionTestcaseProcessor.js' import { Validator } from './Validator.js' /** * test for the TestcaseProcessorDecision */ const expected = { multiplicity: { 1: { email: '', 'first-name': '', 'last-name': '' }, 2.1: { email: '', 'first-name': '', 'last-name': '' }, 2.2: { email: '', 'first-name': '', 'last-name': '' }, 2.3: { email: '', 'first-name': '', 'last-name': '' }, 4: { email: '', 'first-name': '', 'last-name': '' } } } const testDefinition = { excelFileName: 'dt_multiplicity.xls', excelTableNames: ['multiplicity'], validator: new Validator(expected), tableName: 'multiplicity' } executeTest(testDefinition)