Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

External log integration in report #987

Merged
merged 3 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Javadoc update for motivation
  • Loading branch information
vchaitanya committed Oct 30, 2024
commit 1bb1dd03658e072eed4f2a0a6d4c779d82fde464
Original file line number Diff line number Diff line change
Expand Up @@ -371,9 +371,12 @@ public T behaviour( Consumer<Assertion> t ) {
}

/**
* Configures the report customizer behaviour
* Configures the motivation customizer behavior. The `MotivationCustomizer`
* interface allows you to customize the motivation text in the report. This
* method sets the customizer that will be used to modify the motivation text
* based on the original motivation and the test results.
*
* @param customizer How to modify the {@link FlowData}
* @param customizer The custom `MotivationCustomizer` implementation.
* @return <code>this</code> for method chaining.
*/
public T motivation( MotivationCustomizer customizer ) {
Expand Down
2 changes: 1 addition & 1 deletion doc/src/main/markdown/further.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ The motivation text in the report can be enhanced with additional information su
<!-- code_link_start -->

[MotivationCustomizer]: ../../../../assert/assert-core/src/main/java/com/mastercard/test/flow/assrt/MotivationCustomizer.java
[AbstractFlocessor.motivation(MotivationCustomizer)]: ../../../../assert/assert-core/src/main/java/com/mastercard/test/flow/assrt/AbstractFlocessor.java#L373-L379,373-379
[AbstractFlocessor.motivation(MotivationCustomizer)]: ../../../../assert/assert-core/src/main/java/com/mastercard/test/flow/assrt/AbstractFlocessor.java#L373-L382,373-382

<!--code_link_end-->
## Interaction structure
Expand Down