Skip to content

Y20251202-1000

@ptziegler ptziegler tagged this 02 Dec 10:12
This replaces the following pattern:

```
try {
	...
	fail();
} catch (IllegalArgumentException e) {
}
```

with

```
assertThrows(IllegalArgumentException.class, () -> ...);
Assets 2
Loading