Package io.cucumber.messages
Interface Messages.TestRunFinishedOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Messages.TestRunFinished,Messages.TestRunFinished.Builder
- Enclosing class:
- Messages
public static interface Messages.TestRunFinishedOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetMessage()Error message.com.google.protobuf.ByteStringgetMessageBytes()Error message.booleangetSuccess()success = StrictModeEnabled ? (failed_count == 0 && ambiguous_count == 0 && undefined_count == 0 && pending_count == 0) : (failed_count == 0 && ambiguous_count == 0)Messages.TimestampgetTimestamp()Timestamp when the TestRun is finishedMessages.TimestampOrBuildergetTimestampOrBuilder()Timestamp when the TestRun is finishedbooleanhasTimestamp()Timestamp when the TestRun is finished-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSuccess
boolean getSuccess()
success = StrictModeEnabled ? (failed_count == 0 && ambiguous_count == 0 && undefined_count == 0 && pending_count == 0) : (failed_count == 0 && ambiguous_count == 0)
bool success = 1;
-
hasTimestamp
boolean hasTimestamp()
Timestamp when the TestRun is finished
.io.cucumber.messages.Timestamp timestamp = 2;
-
getTimestamp
Messages.Timestamp getTimestamp()
Timestamp when the TestRun is finished
.io.cucumber.messages.Timestamp timestamp = 2;
-
getTimestampOrBuilder
Messages.TimestampOrBuilder getTimestampOrBuilder()
Timestamp when the TestRun is finished
.io.cucumber.messages.Timestamp timestamp = 2;
-
getMessage
String getMessage()
Error message. Can be a stack trace from a failed `BeforeAll` or `AfterAll`. If there are undefined parameter types, the message is simply "The following parameter type(s() are not defined: xxx, yyy". The independent `UndefinedParameterType` messages can be used to generate snippets for those parameter types.
string message = 3;
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
Error message. Can be a stack trace from a failed `BeforeAll` or `AfterAll`. If there are undefined parameter types, the message is simply "The following parameter type(s() are not defined: xxx, yyy". The independent `UndefinedParameterType` messages can be used to generate snippets for those parameter types.
string message = 3;
-
-