jellyfin/tests/Jellyfin.Networking.Tests
Bond_009 a9a5fcde81 Use ArgumentNullException.ThrowIfNull helper method
Did a simple search/replace on the whole repo (except the RSSDP project)
This reduces LOC and should improve performance (methods containing a throw statement don't get inlined)

```
if \((\w+) == null\)
\s+\{
\s+throw new ArgumentNullException\((.*)\);
\s+\}
```

```
ArgumentNullException.ThrowIfNull($1);
```
2022-10-06 20:21:23 +02:00
..
Configuration Add tests for BaseUrl normalization 2022-03-11 15:44:16 +01:00
IPHostTests.cs Add property based testing 2021-06-05 13:32:22 +02:00
IPNetAddressTests.cs Add property based testing 2021-06-05 13:32:22 +02:00
Jellyfin.Networking.Tests.csproj Bump Microsoft.NET.Test.Sdk from 17.3.1 to 17.3.2 2022-09-26 12:01:34 +00:00
NetworkManagerTests.cs Fix url for LiveTV 2021-04-26 17:13:45 +01:00
NetworkParseTests.cs Use ArgumentNullException.ThrowIfNull helper method 2022-10-06 20:21:23 +02:00