Package com.testoptimal.exec.mscript
Class Exec
java.lang.Object
com.testoptimal.exec.mscript.Exec
Provides system functions for MScript.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
cause model execution to abort and trigger Error if declared.generate Message Sequence Chart (MSC) from the home/start state to the current state.generate Message Sequence Chart (MSC) from the home/start state to the current state.generate Message Sequence Chart (MSC) from the home/start state to the current state.generate traversal graph from home/start state to the current state.com.testoptimal.exec.FSM.TravBase
returns the current traversal object which is a wrapper of either state or transition.com.testoptimal.exec.ExecutionSetting
returns the model execution settings for the current executionreturns the list of check failuresreturns the name of this modelset current test path name.returns the report folder file path for the current running model.com.testoptimal.stats.exec.ModelExec
getStats()
returns the model execution stats collection object.void
logs a message to model logvoid
setPathName
(String name_p) void
setSeed
(long seed_p) initialize random number generator used by the sequencer to the specific seed.trace()
returns the trace in a string of the traversals separated by comma leading up to the current state/transition.returns the trace in a string of last maxLogCount_p traversals leading up to the current state/transition.
-
Constructor Details
-
Exec
public Exec(com.testoptimal.exec.mscript.MbtScriptExecutor scriptExec_p)
-
-
Method Details
-
log
logs a message to model log- Parameters:
msg_p
- message or object with .toString() implementation
-
abort
cause model execution to abort and trigger Error if declared.- Parameters:
msg_p
- request MBT execution to be aborted.- Throws:
Exception
-
trace
returns the trace in a string of the traversals separated by comma leading up to the current state/transition.Example: place in
MBT_FAIL
orMBT_ERROR
triggers to print out the test sequence transitions that led to the current state/transition where the error/failure occurred.Example:
$EXEC.trace()
- Returns:
- String, example output as follows 'transName(transUID)'.
ContinueShopping(U101),AddItem(U112)
- Throws:
Exception
-
trace
returns the trace in a string of last maxLogCount_p traversals leading up to the current state/transition. Trace sequence is separated by the specified delimiter.Example: place in
MBT_FAIL
orMBT_ERROR
triggers to print out the test sequence transitions that led to the current state/transition where the error/failure occurred.$EXEC.trace(5,'|')
- Parameters:
maxTraceCount_p
- max number of traversalsdelimiter_p
- delimiter to be used to separate the traversals.- Returns:
- String, example output as follows 'transName:transUID'.
ContinueShopping:U101|AddItem:U112
- Throws:
Exception
-
genPath
generate traversal graph from home/start state to the current state. Typically you would call this function in the final state's trigger to generate a test path that corresponds to a test case/scenario.- Parameters:
fileName_p
- name of the image file without extension. You may include "." in the file name, but the system will always add file extension that matches the image even if you have supplied the right extension.- Returns:
- file name to the image generated and stored in the report folder of the model.
- Throws:
Exception
-
genMSC
generate Message Sequence Chart (MSC) from the home/start state to the current state. Typically you would call this function in the final state's trigger to generate a test sequence that corresponds to a test case / scenario.- Parameters:
chartLabel_p
- chart labelfileName_p
- name of the image file without extension. You may include "." in the file name, but the system will add file extension that matches the image even if you have supplied the right extension.- Returns:
- file name to the image generated and stored in the report folder of the model.
- Throws:
Exception
-
genMSC
generate Message Sequence Chart (MSC) from the home/start state to the current state. Typically you would call this function in the final state's trigger to generate a test sequence that corresponds to a test case / scenario.- Parameters:
chartLabel_p
- chart labelfileName_p
- name of the image file without extension. You may include "." in the file name, but the system will add file extension that matches the image even if you have supplied the right extension.skinName_p
- name of the skin (Rose or BlueModern) to style the MSC.- Returns:
- file name to the image generated and stored in the report folder of the model.
- Throws:
Exception
-
genMSC
public String genMSC(String chartLabel_p, String fileName_p, String skinName_p, String bkgColor_p) throws Exception generate Message Sequence Chart (MSC) from the home/start state to the current state. Typically you would call this function in the final state's trigger to generate a test sequence that corresponds to a test case / scenario.- Parameters:
chartLabel_p
- chart labelfileName_p
- name of the image file without extension. You may include "." in the file name, but the system will add file extension that matches the image even if you have supplied the right extension.skinName_p
- name of the skin (Rose or BlueModern) to style the MSC.bkgColor_p
- background color to be used for MSC, use HTML color code- Returns:
- file name to the image generated and stored in the report folder of the model.
- Throws:
Exception
-
setSeed
public void setSeed(long seed_p) initialize random number generator used by the sequencer to the specific seed. By default system uses the default seed for the random number generator. Changing the random number generator seed will affect the actual test sequence generated while maintaining the same test coverage of the model. At times you may wish to try different seed just to get a different variation from the test sequence generated with the default seed.This function is usually called in the MBT_start trigger. However you may call it anywhere in MScript.
- Parameters:
seed_p
-
-
getStats
returns the model execution stats collection object.- Returns:
- Throws:
Exception
-
getReportFolderPath
returns the report folder file path for the current running model. -
setPathName
- Parameters:
name_p
- sets the name for the current test path (test case)
-
getPathName
set current test path name.- Returns:
- name of the current test path
-
getCurTraverseObj
public com.testoptimal.exec.FSM.TravBase getCurTraverseObj()returns the current traversal object which is a wrapper of either state or transition. Use this traversal object to log success/failure.- Returns:
-
getLastFailure
returns the list of check failures- Returns:
-
getExecSetting
public com.testoptimal.exec.ExecutionSetting getExecSetting()returns the model execution settings for the current execution- Returns:
-
getModelName
returns the name of this model- Returns:
-