public void shouldLogResultAndEmptyArguments()

in src/it/java/com/epam/digital/data/platform/starter/logger/annotation/ConfidentialAnnotationIT.java [80:89]


  public void shouldLogResultAndEmptyArguments() {
    var expected = "unchecked information";
    var actual = proxyServiceMock.methodServiceWithOutAnnotation();

    assertEquals(expected, actual);
    verify(loggerMock).info("{} invoke {} with args {}",
        "com.epam.digital.data.platform.starter.logger.annotation.ServiceMock",
        "methodServiceWithOutAnnotation", new ArrayList<>());
    verify(loggerMock).info("Invoked result {}", expected);
  }