Class EventStreamTestsTrait
java.lang.Object
software.amazon.smithy.model.traits.AbstractTrait
software.amazon.smithy.protocoltests.traits.eventstream.EventStreamTestsTrait
- All Implemented Interfaces:
FromSourceLocation,ToNode,ToShapeId,Trait
Defines a list of protocol tests that enforce how an event stream
is serialized / deserialized for a specific protocol.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionEventStreamTestsTrait(List<EventStreamTestCase> testCases) EventStreamTestsTrait(SourceLocation sourceLocation, List<EventStreamTestCase> testCases) -
Method Summary
Modifier and TypeMethodDescriptionprotected NodeThe result of toNode is used for hashCodes and equality.booleangetTestCasesFor(AppliesTo appliesTo) Gets all test cases that apply to a client or server.inthashCode()Methods inherited from class software.amazon.smithy.model.traits.AbstractTrait
getSourceLocation, setNodeCache, toNode, toShapeId, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.smithy.model.traits.Trait
isSynthetic
-
Field Details
-
ID
-
-
Constructor Details
-
EventStreamTestsTrait
-
EventStreamTestsTrait
-
-
Method Details
-
getTestCases
- Returns:
- Returns all test cases.
-
getTestCasesFor
Gets all test cases that apply to a client or server.Test cases that define an
appliesTomember are tests that should only be implemented by clients or servers. It is assumed that test cases that do not define anappliesTomember are implemented by both client and server implementations.- Parameters:
appliesTo- The type of test case to retrieve.- Returns:
- Returns the matching test cases.
-
equals
- Overrides:
equalsin classAbstractTrait
-
hashCode
public int hashCode()- Overrides:
hashCodein classAbstractTrait
-
createNode
Description copied from class:AbstractTraitThe result of toNode is used for hashCodes and equality. Subclasses must implement createNode to turn the trait into a Node. This is then cached for subsequent retrievals.- Specified by:
createNodein classAbstractTrait- Returns:
- Returns the trait as a node.
-