guava-postfix-plugin icon indicating copy to clipboard operation
guava-postfix-plugin copied to clipboard

Supplimentary message on occasion will only show default message ignoring supplimentary messages

Open ukcrpb6 opened this issue 9 years ago • 0 comments

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);
    }

ukcrpb6 avatar Sep 29 '15 12:09 ukcrpb6