Class FrameReplayExpectedResultContent

  • All Implemented Interfaces:
    java.io.Serializable

    @RestrictTo(value = RestrictTo.Scope.LIBRARY_GROUP_PREFIX) 
    public class FrameReplayExpectedResultContent
     implements Serializable
                        

    FrameReplayExpectedResultContent

    A field expected in the PluginResult. Only 'path' is required: the field must be POPULATED at that path (an integration/wiring check). 'value' is optional and, when present, is compared only as a soft, non-gating check — expected values are accuracy testing (Phase 4) and are deliberately omitted here for most fixtures.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      String getPath() Dotted path into the result JSON where a value is expected to be populated.
      void setPath(String path) Dotted path into the result JSON where a value is expected to be populated.
      String getValue() Optional expected value at path, compared as a soft (non-gating) check when present.
      void setValue(String value) Optional expected value at path, compared as a soft (non-gating) check when present.
      String toString()
      int hashCode()
      boolean equals(Object other)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FrameReplayExpectedResultContent

        FrameReplayExpectedResultContent()
    • Method Detail

      • getPath

         String getPath()

        Dotted path into the result JSON where a value is expected to be populated. (Required)

      • setPath

         void setPath(String path)

        Dotted path into the result JSON where a value is expected to be populated. (Required)

      • getValue

         String getValue()

        Optional expected value at path, compared as a soft (non-gating) check when present.

      • setValue

         void setValue(String value)

        Optional expected value at path, compared as a soft (non-gating) check when present.