plugin/tst/software/aws/toolkits/eclipse/amazonq/chat/models/ChatResultTest.java [18:51]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private final String body = "body";
    private final String messageId = "messageId";
    private final boolean canBeVoted = true;

    private final SourceLink sourceLink = new SourceLink("title", "url", "body");
    private final SourceLink[] sourceLinkArray = new SourceLink[] {sourceLink};
    private final RelatedContent relatedContent = new RelatedContent("title", sourceLinkArray);

    private final String pillText = "Click me";
    private final String prompt = "Test prompt";
    private final Boolean disabled = false;
    private final String description = "Test description";
    private final String type = "button";
    private final ChatItemAction chatItemAction = new ChatItemAction(pillText, prompt, disabled, description, type);

    private final String text = "text";
    private final ChatItemAction[] options = new ChatItemAction[] {chatItemAction};

    private final FollowUp followUp = new FollowUp(text, options);

    private final String licenseName = "licenseName";
    private final String repository = "repository";
    private final String url = "url";

    private final Integer startLine = 1;
    private final Integer endLine = 2;
    private final RecommendationContentSpan recommendationSpan = new RecommendationContentSpan(startLine, endLine);

    private final String information = "information";
    private final ReferenceTrackerInformation referenceTrackerInformation = new ReferenceTrackerInformation(licenseName,
            repository, url, recommendationSpan, information);

    private final ReferenceTrackerInformation[] referenceTrackerInformationList = new ReferenceTrackerInformation[] {
            referenceTrackerInformation};
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



plugin/tst/software/aws/toolkits/eclipse/amazonq/chat/models/ChatUIInboundCommandTest.java [25:58]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private final String body = "body";
    private final String messageId = "messageId";
    private final boolean canBeVoted = true;

    private final SourceLink sourceLink = new SourceLink("title", "url", "body");
    private final SourceLink[] sourceLinkArray = new SourceLink[] {sourceLink};
    private final RelatedContent relatedContent = new RelatedContent("title", sourceLinkArray);

    private final String pillText = "Click me";
    private final String prompt = "Test prompt";
    private final Boolean disabled = false;
    private final String description = "Test description";
    private final String type = "button";
    private final ChatItemAction chatItemAction = new ChatItemAction(pillText, prompt, disabled, description, type);

    private final String text = "text";
    private final ChatItemAction[] options = new ChatItemAction[] {chatItemAction};

    private final FollowUp followUp = new FollowUp(text, options);

    private final String licenseName = "licenseName";
    private final String repository = "repository";
    private final String url = "url";

    private final Integer startLine = 1;
    private final Integer endLine = 2;
    private final RecommendationContentSpan recommendationSpan = new RecommendationContentSpan(startLine, endLine);

    private final String information = "information";
    private final ReferenceTrackerInformation referenceTrackerInformation = new ReferenceTrackerInformation(licenseName,
            repository, url, recommendationSpan, information);

    private final ReferenceTrackerInformation[] referenceTrackerInformationList = new ReferenceTrackerInformation[] {
            referenceTrackerInformation};
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



