guava-postfix-plugin
guava-postfix-plugin copied to clipboard
Supplimentary message on occasion will only show default message ignoring supplimentary messages
Certain context's seem to cause the list of returned messages to only show the default "{varname}" message.
For example,
@Given("^I have a published guid for kind (.*)$")
public void I_have_a_published_guid_for(String kind) throws Throwable {
// kind.cnn[TAB] yields only checkNotNull(kind, "kind");
guid = notificationHelper.getGUID(kind);
assertNotNull(kind + " with guid not created", guid);
}