2
Mockito'da Bitmemiş Saplama Algılandı
Testleri çalıştırırken aşağıdaki istisnayı alıyorum. Mockito'yu alay etmek için kullanıyorum. Mockito kütüphanesi tarafından bahsedilen ipuçları yardımcı olmuyor. org.mockito.exceptions.misusing.UnfinishedStubbingException: Unfinished stubbing detected here: -> at com.a.b.DomainTestFactory.myTest(DomainTestFactory.java:355) E.g. thenReturn() may be missing. Examples of correct stubbing: when(mock.isOk()).thenReturn(true); when(mock.isOk()).thenThrow(exception); doThrow(exception).when(mock).someVoidMethod(); Hints: 1. missing thenReturn() 2. you are trying to stub a final method, …