27 Nisan 2021 Salı

@VisibleForTesting Anotasyonu

Giriş
Şu satırı dahil ederiz
import com.google.common.annotations.VisibleForTesting;
Açıklaması şöyle
... the annotation itself does not prevent production code from calling the annotated method
Örnek
Şöyle yaparız. Böylece testler farklı bir pakette olsa bile Bar sınıfına erişebilir
class Foo {
  ...
  @VisibleForTesting
  static class Bar {
  }
}

Hiç yorum yok:

Yorum Gönder