Interface BuildEventStreamProtos.PatternExpanded.TestSuiteExpansionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BuildEventStreamProtos.PatternExpanded.TestSuiteExpansion,BuildEventStreamProtos.PatternExpanded.TestSuiteExpansion.Builder
- Enclosing class:
- BuildEventStreamProtos.PatternExpanded
public static interface BuildEventStreamProtos.PatternExpanded.TestSuiteExpansionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetSuiteLabel()The label of the test_suite rule.com.google.protobuf.ByteStringgetSuiteLabelBytes()The label of the test_suite rule.java.lang.StringgetTestLabels(int index)Labels of the test targets included in the suite.com.google.protobuf.ByteStringgetTestLabelsBytes(int index)Labels of the test targets included in the suite.intgetTestLabelsCount()Labels of the test targets included in the suite.java.util.List<java.lang.String>getTestLabelsList()Labels of the test targets included in the suite.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSuiteLabel
java.lang.String getSuiteLabel()
The label of the test_suite rule.
string suite_label = 1;- Returns:
- The suiteLabel.
-
getSuiteLabelBytes
com.google.protobuf.ByteString getSuiteLabelBytes()
The label of the test_suite rule.
string suite_label = 1;- Returns:
- The bytes for suiteLabel.
-
getTestLabelsList
java.util.List<java.lang.String> getTestLabelsList()
Labels of the test targets included in the suite. Includes all tests in the suite regardless of any filters or negative patterns which may result in the test not actually being run.
repeated string test_labels = 2;- Returns:
- A list containing the testLabels.
-
getTestLabelsCount
int getTestLabelsCount()
Labels of the test targets included in the suite. Includes all tests in the suite regardless of any filters or negative patterns which may result in the test not actually being run.
repeated string test_labels = 2;- Returns:
- The count of testLabels.
-
getTestLabels
java.lang.String getTestLabels(int index)
Labels of the test targets included in the suite. Includes all tests in the suite regardless of any filters or negative patterns which may result in the test not actually being run.
repeated string test_labels = 2;- Parameters:
index- The index of the element to return.- Returns:
- The testLabels at the given index.
-
getTestLabelsBytes
com.google.protobuf.ByteString getTestLabelsBytes(int index)
Labels of the test targets included in the suite. Includes all tests in the suite regardless of any filters or negative patterns which may result in the test not actually being run.
repeated string test_labels = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the testLabels at the given index.
-
-