use of com.yahoo.athenz.common.server.log.impl.DefaultAuditLogMsgBuilder in project athenz by yahoo.
the class AuditLogMsgBuilderTest method testWhy.
@Test
public void testWhy() {
DefaultAuditLogMsgBuilder msgBldr = starter("testWhy");
String dataStr = "not?";
msgBldr.why(dataStr);
Assert.assertTrue(msgBldr.why().equals(dataStr), "why string=" + msgBldr.why());
}
Aggregations