How to use hasDescription method of org.assertj.core.api.WritableAssertionInfo class

Best Assertj code snippet using org.assertj.core.api.WritableAssertionInfo.hasDescription

Source:WritableAssertionInfo.java Github

copy

Full Screen

...74 * Returns whether the text of this object's description was set.75 *76 * @return whether the text of this object's description was set.77 */78 public boolean hasDescription() {79 return description != null && !isNullOrEmpty(description.value());80 }81 /**82 * Sets the description of an assertion, if given null an empty {@link Description} is set.83 *84 * @param newDescription the new description.85 * @param args if {@code newDescription} is a format String, {@code args} is argument of {@link String#format(String, Object...)}86 * @see #description(Description)87 */88 public void description(String newDescription, Object... args) {89 description = new TextDescription(newDescription, args);90 }91 /**92 * Sets the description of an assertion, if given null an empty {@link Description} is set.93 * <p> 94 * To remove or clear the description, pass a <code>{@link EmptyTextDescription}</code> as95 * argument.96 *97 * @param newDescription the new description.98 */99 public void description(Description newDescription) {100 description = Description.emptyIfNull(newDescription);101 }102 /**103 * {@inheritDoc}104 */105 @Override106 public Representation representation() {107 return representation;108 }109 public void useHexadecimalRepresentation() {110 representation = new HexadecimalRepresentation();111 }112 public void useUnicodeRepresentation() {113 representation = new UnicodeRepresentation();114 }115 public void useBinaryRepresentation() {116 representation = new BinaryRepresentation();117 }118 public void useRepresentation(Representation newRepresentation) {119 checkNotNull(newRepresentation, "The representation to use should not be null.");120 representation = newRepresentation;121 }122 public static String mostRelevantDescriptionIn(WritableAssertionInfo info, String newDescription) {123 return info.hasDescription() ? info.descriptionText() : newDescription;124 }125 /**126 * {@inheritDoc}127 */128 @Override129 public String toString() {130 String format = "%s[overridingErrorMessage=%s, description=%s, representation=%s]";131 return format(format, getClass().getSimpleName(), quote(overridingErrorMessage()), quote(descriptionText()),132 quote(representation()));133 }134}...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful