public void SonarQubeServiceWrapper_TryGetProperties_ArgChecks()
        {
            // Setup
            var testSubject = new SonarQubeServiceWrapper(this.serviceProvider);

            ServerProperty[] properties;

            // Act + Verify
            Exceptions.Expect <ArgumentNullException>(() => testSubject.TryGetProperties(null, CancellationToken.None, out properties));
        }