anchore
Results
2
comments of
anchore
`assert exception == null` means I assert this exp is true, or an exception would be thrown; ```java // it means I want to throw this exception if it is...
```java // equals to assert exception == null if (exception != null) { throw new NullPointerException(); } // the only difference is throw the checked variable itself if (exception !=...