Testcase Definition Interface
TestcaseDefinitionInterface
Defines the interface for a testcase definition
Kind: global class
testcaseDefinitionInterface.id
The id of this testcase
Kind: instance property of TestcaseDefinitionInterface
testcaseDefinitionInterface.multiplicity
Defines how often this test case should be created
Kind: instance property of TestcaseDefinitionInterface
testcaseDefinitionInterface.data
The data in the cell for this testcase
Kind: instance property of TestcaseDefinitionInterface
testcaseDefinitionInterface.table
The table this testcase comes from
Kind: instance property of TestcaseDefinitionInterface
testcaseDefinitionInterface.neverExecute
Should this test case never be executed. This means if this test case is referenced from an other test case it will not be executed
Kind: instance property of TestcaseDefinitionInterface
testcaseDefinitionInterface.tableType
The table type of the table object
Kind: instance property of TestcaseDefinitionInterface
testcaseDefinitionInterface.tableName
The name of the table stored in the table object
Kind: instance property of TestcaseDefinitionInterface
testcaseDefinitionInterface.tableMeta
The meta information of the stored table object
Kind: instance property of TestcaseDefinitionInterface
testcaseDefinitionInterface.execute
Should this test case be executed or is it only for a reference
Kind: instance property of TestcaseDefinitionInterface
testcaseDefinitionInterface.name
The name of this testcase. With this name the testcase could be found in the table
Kind: instance property of TestcaseDefinitionInterface
array
testcaseDefinitionInterface.createTags() ⇒ Returns all the tags found in this test case
Kind: instance method of TestcaseDefinitionInterface
Returns: array
- tags An Array with all the found tags
array
testcaseDefinitionInterface.createFilter() ⇒ Returns all the filter found in this test case
Kind: instance method of TestcaseDefinitionInterface
Returns: array
- filter An Array with all the found filter
array
testcaseDefinitionInterface.createGeneratorSwitches() ⇒ Returns a list of generator names which should not be executed
Kind: instance method of TestcaseDefinitionInterface
Returns: array
- generatorNames An Array with alle the generator names to be switched off for this test case
testcaseDefinitionInterface.createTodos()
Create all the todos for this testcase definition const todos = { generators :[genTodo,], references: [refTodo,], static: [staticData], }
Kind: instance method of TestcaseDefinitionInterface