org.sandev.basics.structs
Class TestRunStatusStruct

java.lang.Object
  extended by org.sandev.basics.structs.TestRunStatusStruct
Direct Known Subclasses:
TestRunStatus

public class TestRunStatusStruct
extends java.lang.Object

A test status reporting structure used to return the result of a test. The TestRunStatus is received by a MessageDriverNode as a signal to begin testing if it has not already started yet. It is returned with a status value when the test is complete.

This message can be transmitted directly outside of a verb form.
This message implements the AuthUser interface using email as the username.
summary fields: status
help text: A test status reporting structure used to return the result of a test.

Field Summary
protected  int status
          The status of the test.
 
Constructor Summary
TestRunStatusStruct()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

status

protected int status
The status of the test.

declared default value: 0

enumerated constant values:

  • SUCCESS("Success") = 0
  • FAILED("Failed") = 1
  • TIMEOUT("Timed Out") = 2
declared invalid value: -1
Constructor Detail

TestRunStatusStruct

public TestRunStatusStruct()