Hi,
I am a bit confused here, so I would appreciate a little help.
I am trying to write a test for method:
public final void setAcceptMatch(boolean inMatchFlag)
{
acceptMatch = inMatchFlag;
}
And here is what I have so far:
public void testsetAcceptMatch() {
WmLoggerFilter subjectWmLoggerFilter = new
WmLoggerFilter();
subjectWmLoggerFilter.setAcceptMatch(true);
}
Now, which assert method should I use to see if "acceptMatch" is true or
not.
Thanks,
-Kamal.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]