15
Hiçbir istisna atılmadığını nasıl test edebilirim?
Bunu yapmanın bir yolu olacağını biliyorum: @Test public void foo(){ try{ //execute code that you expect not to throw Exceptions. } catch(Exception e){ fail("Should not have thrown any exception"); } } Bunu yapmanın daha temiz bir yolu var mı? (Muhtemelen Junit'in @Rulemi kullanılıyor ?)